Add Arti system TCP transport
This commit is contained in:
parent
3fb0269d7c
commit
482fd5d085
15 changed files with 5427 additions and 451 deletions
|
|
@ -10,7 +10,7 @@ crate-type = ["lib", "staticlib"]
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
tokio = { version = "1.37", features = [
|
||||
tokio = { version = "1.50.0", features = [
|
||||
"rt",
|
||||
"macros",
|
||||
"sync",
|
||||
|
|
@ -50,22 +50,25 @@ async-channel = "2.1"
|
|||
schemars = "0.8"
|
||||
futures = "0.3.28"
|
||||
once_cell = "1.19"
|
||||
arti-client = "0.40.0"
|
||||
tokio-util = { version = "0.7.18", features = ["compat"] }
|
||||
console-subscriber = { version = "0.2.0", optional = true }
|
||||
console = "0.15.8"
|
||||
axum = "0.7.4"
|
||||
reqwest = { version = "0.12", default-features = false, features = [
|
||||
axum = "0.8.8"
|
||||
reqwest = { version = "0.13.2", default-features = false, features = [
|
||||
"json",
|
||||
"rustls-tls",
|
||||
"rustls",
|
||||
] }
|
||||
rusqlite = { version = "0.31.0", features = ["blob"] }
|
||||
rusqlite = { version = "0.38.0", features = ["blob"] }
|
||||
dotenv = "0.15.0"
|
||||
tonic = "0.12.0"
|
||||
prost = "0.13.1"
|
||||
prost-types = "0.13.1"
|
||||
tokio-stream = "0.1"
|
||||
tonic = "0.14.5"
|
||||
tonic-prost = "0.14.5"
|
||||
prost = "0.14.3"
|
||||
prost-types = "0.14.3"
|
||||
tokio-stream = "0.1.18"
|
||||
async-stream = "0.2"
|
||||
tower = "0.4.13"
|
||||
hyper-util = "0.1.6"
|
||||
tower = "0.5.3"
|
||||
hyper-util = "0.1.20"
|
||||
toml = "0.8.15"
|
||||
rust-ini = "0.21.0"
|
||||
|
||||
|
|
@ -73,10 +76,11 @@ rust-ini = "0.21.0"
|
|||
caps = "0.5"
|
||||
libsystemd = "0.7"
|
||||
tracing-journald = "0.3"
|
||||
libc = "0.2"
|
||||
|
||||
[target.'cfg(target_vendor = "apple")'.dependencies]
|
||||
nix = { version = "0.27" }
|
||||
rusqlite = { version = "0.31.0", features = ["bundled", "blob"] }
|
||||
nix = { version = "0.27", features = ["ioctl"] }
|
||||
rusqlite = { version = "0.38.0", features = ["bundled", "blob"] }
|
||||
|
||||
[dev-dependencies]
|
||||
insta = { version = "1.32", features = ["yaml"] }
|
||||
|
|
@ -96,4 +100,4 @@ bundled = ["rusqlite/bundled"]
|
|||
|
||||
|
||||
[build-dependencies]
|
||||
tonic-build = "0.12.0"
|
||||
tonic-prost-build = "0.14.5"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue