forked from tensorzero/tensorzero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (64 loc) · 1.87 KB
/
Cargo.toml
File metadata and controls
72 lines (64 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[workspace]
members = [
"tensorzero-internal",
"tensorzero-internal/tests/mock-inference-provider",
"gateway",
"ui/app/utils/minijinja",
"clients/rust",
"clients/python-pyo3",
"provider-proxy",
"evaluations",
"tensorzero-derive",
]
resolver = "2"
[workspace.package]
version = "2025.4.3"
[workspace.dependencies]
reqwest = { version = "0.12.15", features = [
"json",
"multipart",
"rustls-tls",
"http2",
], default-features = false }
serde = { version = "1.0.204", features = ["derive", "rc"] }
uuid = { version = "1.16.0", features = ["serde", "v7"] }
serde_json = { version = "1.0.134", features = ["preserve_order"] }
secrecy = { version = "0.10.2", features = ["serde"] }
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }
toml = "0.8.15"
reqwest-eventsource = "0.6.0"
async-stream = "0.3.5"
tokio-stream = "0.1.15"
tokio = { version = "1.44.2", features = ["full"] }
tracing = { version = "0.1.40", features = ["log"] }
pyo3 = { version = "0.24.1", features = ["experimental-async", "abi3-py39"] }
axum = { version = "0.8", features = ["macros"] }
anyhow = "1.0.97"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
clap = { version = "4.5.35", features = ["derive"] }
futures = "0.3.30"
lazy_static = { version = "1.5.0" }
url = "2.5.4"
serde-untagged = "0.1.7"
object_store = { version = "0.12.0", features = ["serde", "aws"] }
rand = "0.9.0"
chrono = { version = "0.4.40", features = ["serde"] }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
expect_used = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
dbg_macro = "deny"
[profile.performance]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[profile.release.package.minijinja-bindings]
opt-level = "s"