-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 1021 Bytes
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
[package]
name = "openvb"
version = "0.1.1"
edition = "2021"
[dependencies]
usid = { git = "ssh://git@github.com/ExpressiveLabs/usid.git", features = ["serde"] }
anyhow = "1.0.93"
bincode = "1.3.3"
chrono = {version = "0.4.38", optional = true}
dotenv = "0.15.0"
fixedbitset = "0.5.7"
intbits = "0.2.0"
ipa-translate = {version = "0.2.0", optional = true}
rsworld = { version = "0.1.0", optional = true }
rsworld-sys = { version = "0.1.0", optional = true }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
textgridde-rs = {version = "0.1.1", optional = true}
threadpool = "1.8.1"
tqdm = {version ="0.7.0", optional = true}
uuid = {version ="1.11.0", features = ["v4", "serde"]}
wavers = {version = "1.4.3", optional = true}
[features]
default = []
generator = ["textgridde-rs", "tqdm", "wavers", "chrono", "translate", "rsworld", "rsworld-sys"]
translate = ["ipa-translate"]
rsworld = ["dep:rsworld"]
rsworld-sys = ["dep:rsworld-sys"]
[profile.dev]
features = ["generator", "translate"]