Skip to content

Commit

Permalink
build: updated Rust version minimium requirements to 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Pospesel committed Mar 23, 2024
1 parent 7fcf6aa commit 71e9030
Show file tree
Hide file tree
Showing 18 changed files with 106 additions and 273 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ $ git submodule update --init
Gosling currently has the following required build dependencies:

- [cmake >= 3.17](https://cmake.org)
- [rust >= 1.63.0](https://rust-lang.org)
- [rust >= 1.70.0](https://rust-lang.org)

Cargo will automatically download and build the required Rust crates. The list of current dependencies can be found in each crate's Cargo.toml file:

Expand Down
2 changes: 1 addition & 1 deletion source/bindings/c/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions source/bindings/c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "build_c_shared_bindings"
version = "0.1.0"
rust-version = "1.63"
version = "0.0.0"
edition = "2021"
publish = false

[[bin]]
name = "build_c_shared_bindings"
path = "./build_c_shared_bindings.rs"

[dependencies]
handlebars = "^4.3.0"
serde_json = "^1.0"
handlebars = "4.3"
serde_json = "1.0"
2 changes: 1 addition & 1 deletion source/bindings/cpp/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions source/bindings/cpp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "build_cpp_bindings"
version = "0.1.0"
rust-version = "1.63"
version = "0.0.0"
edition = "2021"
publish = false

[[bin]]
name = "build_cpp_bindings"
path = "./build_cpp_bindings.rs"

[dependencies]
handlebars = "^4.3.0"
regex = ">= 1.9, <= 1.9.6"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
handlebars = "4.3"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
14 changes: 7 additions & 7 deletions source/bindings/java/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "build_java_bindings"
version = "0.1.0"
rust-version = "1.63"
version = "0.0.0"
edition = "2021"
publish = false

[[bin]]
name = "build_java_bindings"
path = "./build_java_bindings.rs"

[dependencies]
handlebars = "^4.3.0"
heck = "^0.4"
regex = ">= 1.9, <= 1.9.6"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
handlebars = "4.3"
heck = "0.4"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
14 changes: 7 additions & 7 deletions source/bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "build_python_bindings"
version = "0.1.0"
rust-version = "1.63"
version = "0.0.0"
edition = "2021"
publish = false

[[bin]]
name = "build_python_bindings"
path = "./build_python_bindings.rs"

[dependencies]
handlebars = "^4.3.0"
heck = "^0.4"
regex = ">= 1.9, <= 1.9.6"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
handlebars = "4.3"
heck = "0.4"
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Loading

0 comments on commit 71e9030

Please sign in to comment.