[deps] move all deps into main toml and update
This commit is contained in:
@ -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"
|
||||
|
||||
|
Reference in New Issue
Block a user