-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1015 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 1015 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
35
36
37
38
39
40
41
42
[package]
edition.workspace = true
license-file.workspace = true
name = "orion-format"
rust-version.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
http.workspace = true
orion-http-header.workspace = true
orion-interner.workspace = true
thiserror.workspace = true
ahash = "0.8.12"
bitflags = { version = "2.10.0", features = ["serde"] }
chrono = "0.4.42"
compact_str = "0.9.0"
criterion = "0.7.0"
dhat = "0.3.3"
http-serde-ext = "1.0.2"
hyper = { version = "1" }
itoa = "1.0.15"
ptrie = "0.7.2"
serde = { workspace = true, features = ["rc"] }
smol_str = { version = "0.3.2", features = ["serde"] }
thread_local = "1.1.9"
traceparent = "0.0.3"
uuid = { version = "1.21.0", features = ["v4"] }
[features]
dhat-heap = []
[[benches]]
harness = false
name = "benchmark"
[[bin]]
name = "format-test"
path = "src/bin/format-test.rs"