-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (32 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[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"]