Skip to content

Commit 2be9a19

Browse files
committed
This set create name excelize, and fixed unit test issues
1 parent 4a9e341 commit 2be9a19

File tree

2 files changed

+4
-124
lines changed

2 files changed

+4
-124
lines changed

src/excelize.rs

Lines changed: 0 additions & 120 deletions
This file was deleted.

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
//! The following constitutes the bare to read a spreadsheet document.
1313
//!
1414
//! ```rust
15-
//! extern crate excelize_rs;
15+
//! extern crate excelize;
1616
//!
17-
//! use excelize_rs::*;
17+
//! use excelize::*;
1818
//!
1919
//! fn main() {
2020
//! let path = String::from("Book1.xlsx");
@@ -33,7 +33,7 @@
3333
//! ```
3434
pub mod cell;
3535
pub mod errors;
36-
pub mod excelize;
36+
pub mod app;
3737
pub mod rels;
3838
pub mod sst;
3939
pub mod utils;
@@ -47,7 +47,7 @@ pub mod xml_worksheet;
4747

4848
pub use cell::*;
4949
pub use errors::*;
50-
pub use excelize::*;
50+
pub use app::*;
5151
pub use rels::*;
5252
pub use sst::*;
5353
pub use utils::*;

0 commit comments

Comments
 (0)