summaryrefslogtreecommitdiffstats
path: root/crates/core/thin_edge_json/Cargo.toml
blob: 5ce83271d2f4ac941d1f0c892a3607f81de66d3d (plain)
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
[package]
name = "thin_edge_json"
version = "0.5.2"
authors = ["thin-edge.io team <info@thin-edge.io>"]
edition = "2021"
rust-version = "1.58.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
time = { version = "0.3", features = ["macros"] }
clock = { path = "../../common/clock" }
chrono = "0.4"
json-writer = { path = "../../common/json_writer" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
thiserror = "1.0"

[dev-dependencies]
anyhow = "1.0"
clock = { path = "../../common/clock" }
criterion = "0.3"
mockall = "0.10"
proptest = "1.0"
stats_alloc = "0.1"
walkdir = "2"
assert_matches = "1.5"
test-case = "1.2"

[[bench]]
name = "parsing"
harness = false