-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 884 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (37 loc) · 884 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
[workspace]
resolver = "3"
members = [
"tako-core",
"tako-socket",
"tako-runtime",
"tako-channels",
"tako",
"tako-server",
"tako-spawn",
"tako-workflows",
"tako-images",
"sdk/rust",
]
[workspace.package]
edition = "2024"
[workspace.dependencies]
async-trait = "0.1"
openssl = { version = "0.10", features = ["vendored"] }
pingora-core = "0.8"
pingora-proxy = "0.8"
pingora-http = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ctrlc = "3.5"
clap = { version = "4.6", features = ["derive"] }
tokio = { version = "1.50", features = ["full"] }
reqwest = { version = "0.13", features = ["json"] }
tower-http = { version = "0.6", features = ["fs", "trace"] }
tower = "0.5"
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.0"
[profile.release]
lto = "thin"
codegen-units = 1