-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use workspace inheritance to reduce duplication (#11126)
This relies on Rust 1.65
- Loading branch information
Showing
6 changed files
with
34 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
[package] | ||
name = "cryptography-rust" | ||
[workspace.package] | ||
version = "0.1.0" | ||
authors = ["The cryptography developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
# This specifies the MSRV | ||
rust-version = "1.65.0" | ||
|
||
[package] | ||
name = "cryptography-rust" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
publish.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
once_cell = "1" | ||
cfg-if = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[package] | ||
name = "cryptography-cffi" | ||
version = "0.1.0" | ||
authors = ["The cryptography developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
# This specifies the MSRV | ||
rust-version = "1.65.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
publish.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
pyo3 = { version = "0.21.2", features = ["abi3"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[package] | ||
name = "cryptography-keepalive" | ||
version = "0.1.0" | ||
authors = ["The cryptography developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
# This specifies the MSRV | ||
rust-version = "1.65.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
publish.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
pyo3 = { version = "0.21.2", features = ["abi3"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[package] | ||
name = "cryptography-key-parsing" | ||
version = "0.1.0" | ||
authors = ["The cryptography developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
# This specifies the MSRV | ||
rust-version = "1.65.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
publish.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
asn1 = { version = "0.16.2", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[package] | ||
name = "cryptography-openssl" | ||
version = "0.1.0" | ||
authors = ["The cryptography developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
# This specifies the MSRV | ||
rust-version = "1.65.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
publish.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
cfg-if = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[package] | ||
name = "cryptography-x509-verification" | ||
version = "0.1.0" | ||
authors = ["The cryptography developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
# This specifies the MSRV | ||
rust-version = "1.65.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
publish.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
asn1 = { version = "0.16.2", default-features = false } | ||
|