[deps] move all deps into main toml and update
This commit is contained in:
parent
56c1eb0167
commit
d1eb185498
1154
Cargo.lock
generated
1154
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
14
Cargo.toml
14
Cargo.toml
@ -12,15 +12,23 @@ members = [
|
||||
resolver = "2"
|
||||
|
||||
[workspace.dependencies]
|
||||
bytes = { version = "1.8", features = ["serde"] }
|
||||
bytes = { version = "1.9", features = ["serde"] }
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
eyre = "0.6"
|
||||
itertools = "0.13"
|
||||
s2n-quic = { version = "1.49", features = ["provider-event-tracing"] }
|
||||
log = "0.4"
|
||||
mdns-sd = "0.12"
|
||||
s2n-quic = { version = "1.51", features = ["provider-event-tracing"] }
|
||||
semver = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1.41", features = ["full"] }
|
||||
sqlx = { version = "0.8", default-features = false, features = ["derive", "runtime-tokio", "sqlite"] }
|
||||
tauri = { version = "2.1", features = [] }
|
||||
tauri-plugin-log = "2.0"
|
||||
tauri-plugin-shell = "2.0"
|
||||
tauri-plugin-dialog = "2.0"
|
||||
tauri-plugin-store = "2.1"
|
||||
tokio = { version = "1.42", features = ["full"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
walkdir = "2.5"
|
||||
|
@ -21,7 +21,7 @@ lanspread-utils = { path = "../lanspread-utils" }
|
||||
bytes = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
eyre = { workspace = true }
|
||||
log = "0.4"
|
||||
log = { workspace = true }
|
||||
s2n-quic = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
|
@ -5,6 +5,6 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
eyre = { workspace = true }
|
||||
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio"] }
|
||||
sqlx = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
|
@ -4,6 +4,6 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
mdns-sd = "0.11"
|
||||
mdns-sd = { workspace = true }
|
||||
eyre = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
|
@ -16,7 +16,7 @@ unwrap_used = "warn"
|
||||
lanspread-db = { path = "../lanspread-db" }
|
||||
|
||||
# external
|
||||
bytes = "1.8"
|
||||
bytes = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
|
@ -25,13 +25,12 @@ lanspread-mdns = { path = "../../lanspread-mdns" }
|
||||
|
||||
# external
|
||||
eyre = { workspace = true }
|
||||
log = "0.4"
|
||||
tauri = { version = "2", features = [] }
|
||||
tauri-plugin-log = "2"
|
||||
tauri-plugin-shell = "2"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
log = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
tauri = { workspace = true }
|
||||
tauri-plugin-log = { workspace = true }
|
||||
tauri-plugin-shell = { workspace = true }
|
||||
tauri-plugin-dialog = { workspace = true }
|
||||
tauri-plugin-store = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
tauri-plugin-dialog = "2"
|
||||
tauri-plugin-store = "2"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user