Skip to content

Commit

Permalink
support multiple postgres versions (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
jxs authored May 5, 2023
1 parent 7677031 commit b9e7c5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions refinery_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ walkdir = "2.3.1"

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

0 comments on commit b9e7c5f

Please sign in to comment.