-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 884 Bytes
/
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
[package]
name = "diva_db"
version = "0.1.0"
authors = ["waelwindows"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "diva_db"
crate-type = ["lib", "cdylib"]
[dependencies]
nom = "5.0.1"
log = "0.4.8"
serde = { version="1.0.102", optional=true, features=["derive"]}
cookie-factory = "0.3.0"
nom_ext = { git="https://github.com/Waelwindows/nom_ext" }
pyo3 = { version = "0.18.0", optional = true, features = ["extension-module", "abi3-py37", "generate-import-lib"] }
binrw = "0.10.0"
[dev-dependencies]
criterion = "0.3.0"
env_logger = "0.7.1"
serde_json = "1.0.41"
# bvh_anim = {version="*", git="https://github.com/Waelwindows/bvh_anim.git"}
mint = "0.5.4"
bstr = "0.2.11"
[[bench]]
name = "bones"
harness = false
[[example]]
name = "json"
path = "examples/json.rs"
required-features = ["serde"]