3 Commits

Author SHA1 Message Date
d395c9d359 chore(deps): update tonic monorepo to 0.14.0
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
2025-12-21 04:32:25 +00:00
7616eb3ac9 chore(deps): update rust crate axum to v0.8.8
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
2025-12-21 01:34:06 +00:00
8554b6cca7 chore(deps): update rust crate tracing to v0.1.44
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
2025-12-19 01:38:29 +00:00
4 changed files with 13 additions and 13 deletions

20
Cargo.lock generated
View File

@@ -182,9 +182,9 @@ dependencies = [
[[package]]
name = "axum"
version = "0.8.7"
version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b098575ebe77cb6d14fc7f32749631a6e44edbef6b796f89b020e99ba20d425"
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
dependencies = [
"axum-core 0.5.5",
"bytes",
@@ -1085,7 +1085,7 @@ name = "hyperlog"
version = "0.1.0"
dependencies = [
"anyhow",
"axum 0.8.7",
"axum 0.8.8",
"bus",
"clap",
"dirs",
@@ -1108,7 +1108,7 @@ name = "hyperlog-core"
version = "0.1.0"
dependencies = [
"anyhow",
"axum 0.8.7",
"axum 0.8.8",
"clap",
"dotenv",
"serde",
@@ -1135,7 +1135,7 @@ name = "hyperlog-server"
version = "0.1.0"
dependencies = [
"anyhow",
"axum 0.8.7",
"axum 0.8.8",
"hyperlog-core",
"hyperlog-protos",
"serde",
@@ -2514,7 +2514,7 @@ dependencies = [
"getrandom 0.3.1",
"once_cell",
"rustix",
"windows-sys 0.52.0",
"windows-sys 0.59.0",
]
[[package]]
@@ -2804,9 +2804,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
[[package]]
name = "tracing"
version = "0.1.43"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
dependencies = [
"log",
"pin-project-lite",
@@ -2827,9 +2827,9 @@ dependencies = [
[[package]]
name = "tracing-core"
version = "0.1.35"
version = "0.1.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
dependencies = [
"once_cell",
"valuable",

View File

@@ -19,7 +19,7 @@ serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
itertools = "0.14.0"
uuid = { version = "1.8.0", features = ["v4"] }
tonic = { version = "0.12.0", features = ["tls", "tls-roots"] }
tonic = { version = "0.14.0", features = ["tls", "tls-roots"] }
futures = { version = "0.3.30" }
sha2 = { version = "0.10.8" }
hex = { version = "0.4.3" }

View File

@@ -9,4 +9,4 @@ tonic.workspace = true
prost = "0.13.0"
[build-dependencies]
tonic-build = "0.12.0"
tonic-build = "0.14.0"

View File

@@ -23,7 +23,7 @@ hex.workspace = true
toml.workspace = true
ratatui = "0.29.0"
crossterm = { version = "0.29.0", features = ["event-stream"] }
crossterm = { version = "0.28.0", features = ["event-stream"] }
directories = "6.0.0"
human-panic = "2.0.0"
ropey = "1.6.1"