-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (50 loc) · 1.83 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (50 loc) · 1.83 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.1"
edition = "2024"
license = "MIT"
repository = "https://github.com/valohai/conduit"
homepage = "https://github.com/valohai/conduit"
authors = ["Valohai"]
keywords = ["llm", "proxy", "openai", "anthropic", "valohai"]
[workspace.metadata.release]
shared-version = true
pre-release-commit-message = "Become {{version}}"
tag-name = "v{{version}}"
tag-message = "Version {{version}}"
[workspace.dependencies]
anyhow = "1"
async-stream = "0.3"
axum = "0.8"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
chrono-humanize = "0.2"
clap = { version = "4.6", features = ["derive"] }
crossterm = { version = "0.29", default-features = false, features = ["events", "windows"] }
futures-util = "0.3"
http-body-util = "0.1"
ratatui = { version = "0.30", default-features = false, features = ["crossterm", "layout-cache"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "sync"] }
tokio-stream = "0.1"
toml = "1"
tower = { version = "0.5", features = ["util"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.23", features = ["v7"] }
valohai-conduit-core = { version = "0.1.1", path = "crates/core" }
valohai-conduit-proxy = { version = "0.1.1", path = "crates/proxy" }
valohai-conduit-storage = { version = "0.1.1", path = "crates/storage" }
valohai-conduit-tui = { version = "0.1.1", path = "crates/tui" }
[workspace.lints.clippy]
all = { level = "deny" }
[workspace.lints.rust]
warnings = { level = "deny" }
[profile.dist]
inherits = "release"
lto = "thin"