Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Oct 24, 2024
1 parent 3e668ac commit a10688b
Show file tree
Hide file tree
Showing 8 changed files with 328 additions and 82 deletions.
382 changes: 314 additions & 68 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.40.0", features = ["full", "tracing"] }
tokio = { version = "1.41.0", features = ["full", "tracing"] }
10 changes: 5 additions & 5 deletions src/bin/sh-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ keywords.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.5.5", features = [] }
tauri-build = { version = "2.0.2", features = [] }

[dependencies]
serde_json = "1.0.131"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.132"
serde = { version = "1.0.213", features = ["derive"] }
sdrehub = { path = "../../libraries/sdrehub" }
sh-config = { path = "../../libraries/sh-config" }
tauri = { version = "1.8.1", features = ["api-all"] }
tokio = { version = "1.40.0", features = ["full", "tracing"] }
tauri = { version = "2.0.6", features = ["api-all"] }
tokio = { version = "1.41.0", 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.40.0", features = ["full", "tracing"] }
tokio = { version = "1.41.0", features = ["full", "tracing"] }
log = "0.4.22"
sh-config = { path = "../sh-config" }
sh-api = { path = "../sh-api" }
Expand Down
6 changes: 3 additions & 3 deletions src/libraries/sh-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ keywords.workspace = true
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["ws"] }
log = "0.4.22"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.131"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
sh-common = { path = "../sh-common" }
sh-common-server = { path = "../sh-common-server" }
sh-config = { path = "../sh-config" }
tokio = { version = "1.40.0", features = ["full", "tracing"] }
tokio = { version = "1.41.0", 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.40.0", features = ["full"] }
tokio = { version = "1.41.0", 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.210", features = ["derive"] }
serde_json = "1.0.131"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
sh-config = { path = "../sh-config" }
2 changes: 1 addition & 1 deletion src/libraries/sh-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ keywords.workspace = true
figment = { version = "0.10.19", features = ["toml", "env"] }
sdre-rust-logging = "0.3.4"
log = "0.4.22"
serde = { version = "1.0.210", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
serde-inline-default = "0.2.2"
toml = "0.8.15"
void = "1.0.2"
Expand Down

0 comments on commit a10688b

Please sign in to comment.