forked from stadust/dash-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1.04 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
41
[workspace]
members = ["dash-rs-derive"]
[package]
name = "dash-rs"
version = "0.1.0"
authors = ["stadust <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = {version = "1.0.118", features = ["derive"]}
base64 = "0.21.5"
log = {version = "0.4.8" }
percent-encoding = "2.1.0"
itoa = "1.0.10"
dtoa = "1.0.9"
flate2 = {version = "1.0.14", features = ["zlib"], default-features=false}
variant_partial_eq = { git = "https://github.com/stadust/variant-partial-eq" }
thiserror = "1.0.51"
dash-rs-derive = { path = "dash-rs-derive" }
[dev-dependencies]
# benchmark
env_logger = "0.10.1"
criterion = "0.5.1"
# Dependencies used by examples
reqwest = "0.11.17"
tokio = {version = "1.28.0", features = ["macros", "rt-multi-thread"]}
serde_json = "1.0.108"
pretty_assertions = "1.4.0"
[build-dependencies]
serde = {version = "1.0.104", features = ["derive"]}
serde_yaml = "0.9.29"
[[bench]]
name = "level_processing_benchmark"
harness = false