Update dependencies
Except rusqlite and vault, because newer sqlite versions appear to result in a *very* big performance drop. I suspect the query planner, though I really have no idea.
This commit is contained in:
parent
e1ba15cb9e
commit
bd43fe060b
2 changed files with 277 additions and 361 deletions
597
Cargo.lock
generated
597
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
41
Cargo.toml
41
Cargo.toml
|
|
@ -7,39 +7,40 @@ version = "0.8.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.96"
|
||||||
async-trait = "0.1.80"
|
async-trait = "0.1.86"
|
||||||
clap = { version = "4.5.4", features = ["derive", "deprecated"] }
|
clap = { version = "4.5.30", features = ["derive", "deprecated"] }
|
||||||
cookie = "0.18.1"
|
cookie = "0.18.1"
|
||||||
crossterm = "0.27.0"
|
crossterm = "0.28.1"
|
||||||
directories = "5.0.1"
|
directories = "6.0.0"
|
||||||
edit = "0.1.5"
|
edit = "0.1.5"
|
||||||
jiff = "0.2.1"
|
jiff = "0.2.1"
|
||||||
linkify = "0.10.0"
|
linkify = "0.10.0"
|
||||||
log = { version = "0.4.21", features = ["std"] }
|
log = { version = "0.4.25", features = ["std"] }
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.20.2"
|
||||||
open = "5.1.3"
|
open = "5.3.2"
|
||||||
parking_lot = "0.12.2"
|
parking_lot = "0.12.3"
|
||||||
proc-macro2 = "1.0.83"
|
proc-macro2 = "1.0.93"
|
||||||
quote = "1.0.36"
|
quote = "1.0.38"
|
||||||
rusqlite = { version = "0.31.0", features = ["bundled", "time"] }
|
rusqlite = { version = "0.31.0", features = ["bundled", "time"] }
|
||||||
rustls = "0.23.19"
|
rustls = "0.23.23"
|
||||||
serde = { version = "1.0.202", features = ["derive"] }
|
serde = { version = "1.0.218", features = ["derive"] }
|
||||||
serde_either = "0.2.1"
|
serde_either = "0.2.1"
|
||||||
serde_json = "1.0.117"
|
serde_json = "1.0.139"
|
||||||
syn = "2.0.65"
|
syn = "2.0.98"
|
||||||
thiserror = "1.0.61"
|
thiserror = "2.0.11"
|
||||||
tokio = { version = "1.37.0", features = ["full"] }
|
tokio = { version = "1.43.0", features = ["full"] }
|
||||||
toml = "0.8.13"
|
toml = "0.8.20"
|
||||||
unicode-width = "0.1.12"
|
unicode-width = "0.2.0"
|
||||||
|
|
||||||
[workspace.dependencies.euphoxide]
|
[workspace.dependencies.euphoxide]
|
||||||
git = "https://github.com/Garmelon/euphoxide.git"
|
git = "https://github.com/Garmelon/euphoxide.git"
|
||||||
|
tag = "v0.6.0"
|
||||||
features = ["bot"]
|
features = ["bot"]
|
||||||
|
|
||||||
[workspace.dependencies.toss]
|
[workspace.dependencies.toss]
|
||||||
git = "https://github.com/Garmelon/toss.git"
|
git = "https://github.com/Garmelon/toss.git"
|
||||||
tag = "v0.2.3"
|
tag = "v0.3.1"
|
||||||
|
|
||||||
[workspace.dependencies.vault]
|
[workspace.dependencies.vault]
|
||||||
git = "https://github.com/Garmelon/vault.git"
|
git = "https://github.com/Garmelon/vault.git"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue