zotero_rs/
lib.rs

1mod asynchronous;
2mod synchronous;
3
4pub mod errors;
5pub use errors::ZoteroError as Error;
6
7pub use asynchronous::Zotero as ZoteroAsync;
8pub use synchronous::Zotero;
9
10const VERSION: &str = "1";
11const API_VERSION: &str = "3";