We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a9e341 commit 2be9a19Copy full SHA for 2be9a19
src/excelize.rs
src/lib.rs
@@ -12,9 +12,9 @@
12
//! The following constitutes the bare to read a spreadsheet document.
13
//!
14
//! ```rust
15
-//! extern crate excelize_rs;
+//! extern crate excelize;
16
17
-//! use excelize_rs::*;
+//! use excelize::*;
18
19
//! fn main() {
20
//! let path = String::from("Book1.xlsx");
@@ -33,7 +33,7 @@
33
//! ```
34
pub mod cell;
35
pub mod errors;
36
-pub mod excelize;
+pub mod app;
37
pub mod rels;
38
pub mod sst;
39
pub mod utils;
@@ -47,7 +47,7 @@ pub mod xml_worksheet;
47
48
pub use cell::*;
49
pub use errors::*;
50
-pub use excelize::*;
+pub use app::*;
51
pub use rels::*;
52
pub use sst::*;
53
pub use utils::*;
0 commit comments