Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
z-Wind committed Aug 12, 2024
1 parent a44d002 commit efd4b08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"rust-analyzer.cargo.features": [
"sqlite",
"sqlitefaster",
"postgresql",
"mysql",
"xml",
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
sqlx = { version = "0.7", optional = true }
sqlx = { version = "0.8", optional = true }
chrono = "0.4"
rust_decimal = { version = "1.34", optional = true }
rust_decimal = { version = "1.35", optional = true }
xmltree = { version = "0.10", optional = true }
itertools = "0.12"
itertools = "0.13"
flate2 = "1.0"
tokio = { version = "1.36", features = ["sync"] }
tokio = { version = "1.39", features = ["sync"] }
num-traits = "0.2"
thiserror = "1.0"
rusqlite = { version = "*", features = ["bundled", "chrono"], optional = true }
Expand All @@ -37,7 +37,7 @@ crate-type = ["cdylib", "rlib"]
criterion = { version = "0.5", features = ["async_tokio"] }
float-cmp = "0.9"
pretty_assertions = "1.4"
tokio = { version = "1.36", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.39", features = ["rt-multi-thread", "macros"] }

[features]
default = []
Expand Down

0 comments on commit efd4b08

Please sign in to comment.