[package] # OpenRetailDataMigrator name = "odm-migration-utility" version = "0.0.19" edition = "2021" description = "OpenRetail Data Migrator Utility" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] wasm-bindgen = { version = "0.2.84", optional = true } web-sys = { version = "0.3.64", optional = true, features = ["File", "FileReader", "FileSystem", "FileSystemDirectoryHandle", "FileSystemDirectoryReader"] } js-sys = { version = "0.3.64", optional = true } vfs = { version = "0.9.0", optional = true } clap = { version = "4.2.1", features = ["cargo"], optional = true } getrandom = { version = "0.2", features = ["js"] } open-stock = { version = "0.1.20", features = ["types"] } csv = "1.1" serde = { version = "1", features = ["derive"] } serde_json = "1.0.107" phf = { version = "0.11", features = ["macros"] } uuid = "1.3.1" chrono = "0.4.26" strum = "0.24" strum_macros = "0.24" strsim = "0.8.0" schemars = "0.8.16" [lib] crate-type = ["cdylib", "rlib"] [features] cli = ["clap"] wasm = ["wasm-bindgen", "web-sys", "vfs", "js-sys"] default = ["cli"]