Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Dec 1, 2024
1 parent 68504a6 commit 4fe3b60
Show file tree
Hide file tree
Showing 8 changed files with 1,291 additions and 2,336 deletions.
3,595 changes: 1,275 additions & 2,320 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/bin/sdre-hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ keywords.workspace = true
[dependencies]
sdrehub = { path = "../../libraries/sdrehub" }
sh-config = { path = "../../libraries/sh-config" }
tokio = { version = "1.41.0", features = ["full", "tracing"] }
tokio = { version = "1.41.1", features = ["full", "tracing"] }
8 changes: 4 additions & 4 deletions src/bin/sh-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ keywords.workspace = true
tauri-build = { version = "2.0.2", features = [] }

[dependencies]
serde_json = "1.0.132"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.133"
serde = { version = "1.0.215", features = ["derive"] }
sdrehub = { path = "../../libraries/sdrehub" }
sh-config = { path = "../../libraries/sh-config" }
tauri = { version = "2.0.6", features = ["api-all"] }
tokio = { version = "1.41.0", features = ["full", "tracing"] }
tauri = { version = "2.1.1" }
tokio = { version = "1.41.1", features = ["full", "tracing"] }

[features]
default = ["custom-protocol"]
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/sdrehub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.41.0", features = ["full", "tracing"] }
tokio = { version = "1.41.1", features = ["full", "tracing"] }
log = "0.4.22"
sh-config = { path = "../sh-config" }
sh-api = { path = "../sh-api" }
Expand Down
8 changes: 4 additions & 4 deletions src/libraries/sh-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ keywords.workspace = true

[dependencies]
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["ws"] }
axum = { version = "0.7.9", features = ["ws"] }
log = "0.4.22"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
sh-common = { path = "../sh-common" }
sh-common-server = { path = "../sh-common-server" }
sh-config = { path = "../sh-config" }
tokio = { version = "1.41.0", features = ["full", "tracing"] }
tokio = { version = "1.41.1", features = ["full", "tracing"] }
2 changes: 1 addition & 1 deletion src/libraries/sh-common-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ keywords.workspace = true
async-trait = "0.1.83"
sh-config = { path = "../sh-config" }
sh-common = { path = "../sh-common" }
tokio = { version = "1.41.0", features = ["full"] }
tokio = { version = "1.41.1", features = ["full"] }
4 changes: 2 additions & 2 deletions src/libraries/sh-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ keywords.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
sh-config = { path = "../sh-config" }
6 changes: 3 additions & 3 deletions src/libraries/sh-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ keywords.workspace = true

[dependencies]
figment = { version = "0.10.19", features = ["toml", "env"] }
sdre-rust-logging = "0.3.4"
sdre-rust-logging = "0.3.6"
log = "0.4.22"
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde-inline-default = "0.2.2"
toml = "0.8.15"
toml = "0.8.19"
void = "1.0.2"
directories = "5.0.1"

0 comments on commit 4fe3b60

Please sign in to comment.