Skip to content

Commit

Permalink
Revert "Upgrade to Rust 2021 edition"
Browse files Browse the repository at this point in the history
This reverts commit 55a5fef.
  • Loading branch information
messense committed Nov 28, 2021
1 parent 03a3290 commit eb46dfe
Show file tree
Hide file tree
Showing 19 changed files with 22 additions and 21 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/pyo3/maturin"
license = "MIT OR Apache-2.0"
keywords = ["python", "cffi", "packaging", "pypi", "pyo3"]
categories = ["api-bindings", "development-tools::ffi", "command-line-utilities"]
edition = "2021"
edition = "2018"

[badges]
travis-ci = { repository = "PyO3/maturin" }
Expand Down
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Use platform tag from `sysconfig.platform` on non-portable Linux in [#709](https://github.com/PyO3/maturin/pull/709)
* Consider current machine architecture when generating platform tags for abi3
wheels on linux in [#709](https://github.com/PyO3/maturin/pull/709)
* Revert back to Rust 2018 edition in [#710](https://github.com/PyO3/maturin/pull/710)

## [0.12.2] - 2021-11-26

Expand Down
2 changes: 1 addition & 1 deletion test-crates/cargo-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cargo-mock"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"

[[bin]]
name = "cargo"
Expand Down
2 changes: 1 addition & 1 deletion test-crates/cffi-mixed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cffi-mixed"
version = "0.1.0"
authors = ["Armin Ronacher <[email protected]>"]
edition = "2021"
edition = "2018"

[lib]
name = "cffi_mixed"
Expand Down
2 changes: 1 addition & 1 deletion test-crates/cffi-pure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cffi-pure"
version = "0.1.0"
authors = ["Armin Ronacher <[email protected]>"]
edition = "2021"
edition = "2018"

[lib]
name = "cffi_pure"
Expand Down
2 changes: 1 addition & 1 deletion test-crates/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "hello-world"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"
# Test references to out-of-project files
readme = "../../Readme.md"

Expand Down
2 changes: 1 addition & 1 deletion test-crates/lib_with_disallowed_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lib_with_disallowed_lib"
version = "0.1.0"
authors = ["messense <[email protected]>"]
edition = "2021"
edition = "2018"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion test-crates/lib_with_path_dep/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lib_with_path_dep"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion test-crates/pyo3-abi3-without-version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pyo3-abi3-without-version"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"

[dependencies]
pyo3 = { version = "0.15.1", features = ["abi3", "extension-module"] }
Expand Down
2 changes: 1 addition & 1 deletion test-crates/pyo3-feature/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["konstin <[email protected]>"]
name = "pyo3-feature"
version = "0.7.3"
edition = "2021"
edition = "2018"

[dependencies]
pyo3 = { version = "0.15.1", optional = true }
2 changes: 1 addition & 1 deletion test-crates/pyo3-mixed-py-subdir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "pyo3-mixed-py-subdir"
version = "2.1.3"
description = "Implements a dummy function combining rust and python"
readme = "Readme.md"
edition = "2021"
edition = "2018"

[dependencies]
pyo3 = { version = "0.15.1", features = ["extension-module"] }
Expand Down
2 changes: 1 addition & 1 deletion test-crates/pyo3-mixed-submodule/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "pyo3-mixed-submodule"
version = "2.1.3"
description = "Implements a dummy function combining rust and python"
readme = "Readme.md"
edition = "2021"
edition = "2018"

[package.metadata.maturin]
name = "pyo3_mixed_submodule.rust_module.rust"
Expand Down
2 changes: 1 addition & 1 deletion test-crates/pyo3-mixed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "pyo3-mixed"
version = "2.1.3"
description = "Implements a dummy function combining rust and python"
readme = "Readme.md"
edition = "2021"
edition = "2018"

[dependencies]
pyo3 = { version = "0.15.1", features = ["extension-module"] }
Expand Down
2 changes: 1 addition & 1 deletion test-crates/pyo3-no-extension-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["konstin <[email protected]>"]
name = "pyo3-no-extension-module"
version = "2.1.0"
description = "Does not use the extension-module feature, thus erroneously linking libpython"
edition = "2021"
edition = "2018"

[dependencies]
pyo3 = { version = "0.15.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion test-crates/pyo3-pure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["konstin <[email protected]>"]
name = "pyo3-pure"
version = "2.1.2"
edition = "2021"
edition = "2018"
description = "Implements a dummy function (get_fortytwo.DummyClass.get_42()) in rust"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion test-crates/some_path_dep/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "some_path_dep"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion test-crates/transitive_path_dep/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "transitive_path_dep"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion test-crates/workspace/py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name = "py"
version = "0.1.0"
authors = ["konstin <[email protected]>"]
edition = "2021"
edition = "2018"

[dependencies]

0 comments on commit eb46dfe

Please sign in to comment.