-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (42 loc) · 1.23 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (42 loc) · 1.23 KB
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
43
44
45
46
47
48
49
50
[package]
name = "pole-sidecar"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async trait support
async-trait = "0.1"
# Pingora core with proxy + lb + time. No TLS features to keep local build simple.
pingora = { version = "0.6", features = ["proxy", "lb", "time"] }
# Config & utils
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# Misc
libc = "0.2"
parking_lot = "0.12"
regex = "1.10"
bytes = "1.10"
serde_json = "1.0"
jsonpath-rust = "1.0.6"
dashmap = "6.1"
tokio = { version = "1", features = ["io-util", "net", "rt-multi-thread", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = { version = "0.14", features = ["transport"] }
tonic-prost = "0.14"
prost = "0.14"
pole_rust = { git = "https://github.com/lattice-hub/pole-client-rust.git", rev = "508e672d8acb8c40e4a03cef32c1eb5b3af705d0" }
[build-dependencies]
tonic-prost-build = "0.14"
[dev-dependencies]
criterion = "0.5"
sha2 = "0.10"
tempfile = "3"
tower = { version = "0.5", features = ["util"] }
hyper-util = { version = "0.1", features = ["tokio"] }
[[bench]]
name = "governance_hot_path"
harness = false