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
104 lines (98 loc) · 2.9 KB
/
Cargo.toml
File metadata and controls
104 lines (98 loc) · 2.9 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
members = [
"tensorzero-core",
"tensorzero-core/tests/mock-inference-provider",
"gateway",
"ui/app/utils/minijinja",
"internal/tensorzero-node",
"clients/rust",
"clients/python",
"provider-proxy",
"evaluations",
"internal/tensorzero-derive",
"examples/integrations/cursor/feedback",
]
resolver = "2"
[workspace.package]
version = "2025.7.6"
rust-version = "1.86.0"
license = "Apache-2.0"
[workspace.dependencies]
reqwest = { version = "0.12.22", features = [
"json",
"multipart",
"rustls-tls",
"http2",
], default-features = false }
serde = { version = "1.0.204", features = ["derive", "rc"] }
serde_path_to_error = "0.1.17"
uuid = { version = "1.17.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.9.2"
reqwest-eventsource = "0.6.0"
async-stream = "0.3.5"
http = "1.3.1"
tokio-stream = "0.1.15"
tokio = { version = "1.46.1", features = ["full"] }
tracing = { version = "0.1.40", features = ["log"] }
pyo3 = { version = "0.24.2", features = ["experimental-async", "abi3-py39"] }
axum = { version = "0.8", features = ["macros"] }
anyhow = "1.0.98"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
clap = { version = "4.5.41", 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.2", features = ["serde", "aws", "gcp"] }
rand = "0.9.1"
ts-rs = { version = "11.0.1", features = [
"serde-compat",
"serde-json-impl",
"uuid-impl",
"url-impl",
"no-serde-warnings",
] }
chrono = { version = "0.4.41", features = ["serde"] }
git2 = { version = "0.20.2", default-features = false }
tracing-opentelemetry-instrumentation-sdk = { version = "0.29.0", features = [
"tracing_level_info",
] }
tower-http = { version = "0.6.6", features = ["trace"] }
mime = { git = "https://github.com/hyperium/mime", rev = "1ef137c7358fc64e07c8a640e4e9ba2a784b7f7d", features = [
"serde1",
] }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
allow_attributes = "deny"
dbg_macro = "deny"
expect_used = "deny"
explicit_iter_loop = "deny"
if_not_else = "deny"
ignored_unit_patterns = "deny"
manual_string_new = "deny"
match_bool = "deny"
needless_raw_string_hashes = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
redundant_closure_for_method_calls = "deny"
semicolon-if-nothing-returned = "deny"
todo = "deny"
trivially_copy_pass_by_ref = "deny"
unimplemented = "deny"
uninlined_format_args = "deny"
unnecessary_wraps = "deny"
unreachable = "deny"
unused_self = "deny"
unwrap_used = "deny"
[profile.performance]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[profile.release.package.minijinja-bindings]
opt-level = "s"