Update dependencies
This commit is contained in:
parent
2983733744
commit
39a4f29a2a
6 changed files with 406 additions and 451 deletions
817
Cargo.lock
generated
817
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -9,9 +9,9 @@ edition = "2021"
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
crossterm = "0.27.0"
|
crossterm = "0.27.0"
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0.12.1"
|
||||||
serde = { version = "1.0.188", features = ["derive"] }
|
serde = { version = "1.0.193", features = ["derive"] }
|
||||||
serde_either = "0.2.1"
|
serde_either = "0.2.1"
|
||||||
thiserror = "1.0.47"
|
thiserror = "1.0.52"
|
||||||
|
|
||||||
[workspace.dependencies.toss]
|
[workspace.dependencies.toss]
|
||||||
git = "https://github.com/Garmelon/toss.git"
|
git = "https://github.com/Garmelon/toss.git"
|
||||||
|
|
|
||||||
|
|
@ -10,4 +10,4 @@ cove-macro = { path = "../cove-macro" }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
toml = "0.7.6"
|
toml = "0.8.8"
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,4 @@ serde_either = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
toss = { workspace = true }
|
toss = { workspace = true }
|
||||||
|
|
||||||
edit = "0.1.4"
|
edit = "0.1.5"
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ edition = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
case = "1.0.0"
|
case = "1.0.0"
|
||||||
proc-macro2 = "1.0.66"
|
proc-macro2 = "1.0.71"
|
||||||
quote = "1.0.33"
|
quote = "1.0.33"
|
||||||
syn = "2.0.29"
|
syn = "2.0.43"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
||||||
|
|
@ -12,35 +12,35 @@ parking_lot = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
toss = { workspace = true }
|
toss = { workspace = true }
|
||||||
|
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.77"
|
||||||
async-trait = "0.1.73"
|
async-trait = "0.1.75"
|
||||||
clap = { version = "4.4.1", features = ["derive", "deprecated"] }
|
clap = { version = "4.4.12", features = ["derive", "deprecated"] }
|
||||||
cookie = "0.17.0"
|
cookie = "0.18.0"
|
||||||
directories = "5.0.1"
|
directories = "5.0.1"
|
||||||
linkify = "0.10.0"
|
linkify = "0.10.0"
|
||||||
log = { version = "0.4.20", features = ["std"] }
|
log = { version = "0.4.20", features = ["std"] }
|
||||||
once_cell = "1.18.0"
|
once_cell = "1.19.0"
|
||||||
open = "5.0.0"
|
open = "5.0.1"
|
||||||
rusqlite = { version = "0.29.0", features = ["bundled", "time"] }
|
rusqlite = { version = "0.30.0", features = ["bundled", "time"] }
|
||||||
serde_json = "1.0.105"
|
serde_json = "1.0.108"
|
||||||
tokio = { version = "1.32.0", features = ["full"] }
|
tokio = { version = "1.35.1", features = ["full"] }
|
||||||
unicode-segmentation = "1.10.1"
|
unicode-segmentation = "1.10.1"
|
||||||
unicode-width = "0.1.10"
|
unicode-width = "0.1.11"
|
||||||
|
|
||||||
[dependencies.time]
|
[dependencies.time]
|
||||||
version = "0.3.28"
|
version = "0.3.31"
|
||||||
features = ["macros", "formatting", "parsing", "serde"]
|
features = ["macros", "formatting", "parsing", "serde"]
|
||||||
|
|
||||||
[dependencies.tokio-tungstenite]
|
[dependencies.tokio-tungstenite]
|
||||||
version = "0.20.0"
|
version = "0.21.0"
|
||||||
features = ["rustls-tls-native-roots"]
|
features = ["rustls-tls-native-roots"]
|
||||||
|
|
||||||
[dependencies.euphoxide]
|
[dependencies.euphoxide]
|
||||||
git = "https://github.com/Garmelon/euphoxide.git"
|
git = "https://github.com/Garmelon/euphoxide.git"
|
||||||
tag = "v0.4.0"
|
tag = "v0.5.0"
|
||||||
features = ["bot"]
|
features = ["bot"]
|
||||||
|
|
||||||
[dependencies.vault]
|
[dependencies.vault]
|
||||||
git = "https://github.com/Garmelon/vault.git"
|
git = "https://github.com/Garmelon/vault.git"
|
||||||
tag = "v0.2.0"
|
tag = "v0.3.0"
|
||||||
features = ["tokio"]
|
features = ["tokio"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue