Skip to content

Commit

Permalink
chore: Updated deps on all crates (#271)
Browse files Browse the repository at this point in the history
* chore: Updated deps on all crates

* Update refinery_core/Cargo.toml

---------

Co-authored-by: João Oliveira <hello@jxs.pt>
  • Loading branch information
OtaK and jxs authored Apr 26, 2023
1 parent c74b6f1 commit d26628c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions refinery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ refinery-macros = { version = "0.8.7", path = "../refinery_macros" }
barrel = { git = "https://github.com/jxs/barrel", features = ["sqlite3", "pg", "mysql", "mssql"] }
futures = "0.3"
assert_cmd = "2.0"
predicates = "2"
predicates = "3"
tempfile = "3"
time = "0.3.5"
tokio-util = { version = "0.6.7", features = ["compat"] }
tokio-util = { version = "0.7.7", features = ["compat"] }
tokio = { version = "1.9.0", features = ["full"] }
10 changes: 5 additions & 5 deletions refinery_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ mssql = ["refinery-core/tiberius-config", "tokio"]

[dependencies]
refinery-core = { version = "0.8.7", path = "../refinery_core", default-features = false }
clap = { version = "3", features = ["derive"] }
human-panic = "=1.0.3" # locked as 1.0.2 introduced breaking changes
toml = "0.5"
env_logger = "0.9"
clap = { version = "4", features = ["derive"] }
human-panic = "1.1.3"
toml = "0.7"
env_logger = "0.10"
log = "0.4"
anyhow = "1"
regex = "1"
Expand All @@ -36,7 +36,7 @@ cfg-if = "1.0.0"
tokio = { version = "1.0", features = ["full"], optional = true }

[dev-dependencies]
predicates = "2"
predicates = "3"
assert_cmd = "2"

[package.metadata.deb]
Expand Down
10 changes: 5 additions & 5 deletions refinery_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ regex = "1"
serde = { version = "1", features = ["derive"] }
siphasher = "0.3"
thiserror = "1"
toml = "0.5"
toml = "0.7"
url = "2.0"
walkdir = "2.3.1"

# allow multiple versions of the same dependency if API is similar
rusqlite = { version = ">= 0.23, <= 0.28", optional = true }
rusqlite = { version = ">= 0.23, <= 0.29", optional = true }
postgres = { version = "0.19", optional = true }
tokio-postgres = { version = "0.7", optional = true }
mysql = { version = ">= 21.0.0, <= 23", optional = true, default-features = false}
mysql_async = { version = ">= 0.28, <= 0.30", optional = true }
mysql_async = { version = ">= 0.28, <= 0.31", optional = true }
tokio = { version = "1.0", features = ["full"], optional = true }
tiberius = { version = "0.7", optional = true }
tiberius = { version = ">= 0.7, <= 0.12", optional = true }
futures = { version = "0.3.16", optional = true }
tokio-util = { version = "0.6.7", features = ["compat"], optional = true }
tokio-util = { version = "0.7.7", features = ["compat"], optional = true }
time = { version = "0.3.5", features = ["parsing", "formatting"] }

# Flate2 needs to be included for mysql to work
Expand Down
2 changes: 1 addition & 1 deletion refinery_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ proc-macro = true
[dependencies]
refinery-core = { version = "0.8.7", path = "../refinery_core" }
quote = "1"
syn = "1"
syn = "2"
proc-macro2 = "1"
regex = "1"

Expand Down

0 comments on commit d26628c

Please sign in to comment.