Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: [DO NOT MERGE] patch for prql-compiler to change MSRV to 1.65.0 #4001

Closed
wants to merge 12 commits into from
247 changes: 149 additions & 98 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ authors = ["PRQL Developers"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
rust-version = "1.70.0"
rust-version = "1.65.0"
version = "0.11.2"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion prqlc/bindings/prqlc-c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ doc = false
[dependencies]
libc = "0.2.153"
prqlc = {path = "../../prqlc", default-features = false}
serde_json = "1.0.113"
serde_json = "1.0.109"

[package.metadata.release]
tag-name = "{{version}}"
Expand Down
2 changes: 1 addition & 1 deletion prqlc/prql-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository.workspace = true
rust-version.workspace = true
version.workspace = true

metadata.msrv = "1.70.0"
metadata.msrv = "1.65.0"

[dependencies]
prqlc = {path = "../prqlc", version = "0.11.2", default-features = false}
Expand Down
6 changes: 3 additions & 3 deletions prqlc/prqlc-ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ doctest = false
[dependencies]
anyhow = {version = "1.0.79", optional = true}
enum-as-inner = "0.6.0"
semver = {version = "1.0.21", features = ["serde"]}
serde = {version = "1.0.196", features = ["derive"]}
semver = {version = "1.0.20", features = ["serde"]}
serde = {version = "1.0.193", features = ["derive"]}
strum = {version = "0.26.1", features = ["std", "derive"]}

[dev-dependencies]
insta = "1.34"
serde_json = "1.0.113"
serde_json = "1.0.109"
2 changes: 1 addition & 1 deletion prqlc/prqlc-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ doctest = false
[dependencies]
itertools = "0.12.0"
prqlc-ast = {path = "../prqlc-ast", version = "0.11.2" }
semver = {version = "1.0.21"}
semver = {version = "1.0.20"}

# Chumsky's default features have issues when running in wasm (though we only
# see it when compiling on MacOS), so we only include features when running
Expand Down
14 changes: 7 additions & 7 deletions prqlc/prqlc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ name = "prqlc"
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
rust-version = "1.65.0"
version.workspace = true

# Required for `cargo-msrv`, which doesn't yet support workspaces
metadata.msrv = "1.70.0"
metadata.msrv = "1.65.0"

[features]
cli = [
Expand All @@ -35,7 +35,7 @@ test-dbs-external = ["duckdb", "glob", "mysql", "pg_bigdecimal", "postgres", "ru
prqlc-ast = {path = "../prqlc-ast", version = "0.11.2"}
prqlc-parser = {path = "../prqlc-parser", version = "0.11.2"}

anstream = {version = "0.6.11", features = ["auto"]}
anstream = {version = "0.3.2", features = ["auto"]}
anyhow = {version = "1.0.79", features = ["backtrace"]}
ariadne = "0.4.0"
chrono = "0.4.33"
Expand All @@ -45,11 +45,11 @@ itertools = "0.12.0"
log = "0.4.20"
once_cell = "1.19.0"
regex = "1.10.3"
semver = {version = "1.0.21", features = ["serde"]}
semver = {version = "1.0.20", features = ["serde"]}
# We could put `serde` behind a feature if we wanted to reduce the size of prqlc.
serde = {version = "1.0.196", features = ["derive"]}
serde_json = "1.0.113"
serde_yaml = {version = "0.9.31"}
serde = {version = "1.0.193", features = ["derive"]}
serde_json = "1.0.109"
serde_yaml = {version = "0.9.29"}
sqlformat = "0.2.3"
sqlparser = {version = "0.43.1", features = ["serde"]}
strum = {version = "0.26.1", features = ["std", "derive"]}
Expand Down
6 changes: 3 additions & 3 deletions web/book/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ strum = {version = "0.26.1", features = ["std", "derive"]}
strum_macros = "0.26.1"

[target.'cfg(not(target_family="wasm"))'.dev-dependencies]
anstream = {version = "0.6.11"}
anstream = {version = "0.3.2"}
globset = "0.4.14"
insta = {version = "1.34", features = ["colors", "glob"]}
log = "0.4.20"
regex = "1.10.3"
serde_json = "1.0.113"
serde_yaml = "0.9.31"
serde_json = "1.0.109"
serde_yaml = "0.9.29"
similar-asserts = "1.5.0"
walkdir = "2.4.0"

Expand Down