-
Notifications
You must be signed in to change notification settings - Fork 20
Housekeeping #135
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
base: master
Are you sure you want to change the base?
Housekeeping #135
Changes from all commits
9c872cc
9e0f363
a5bbc32
ce231b6
88b4a02
b593874
8f8db5c
4d70a64
3acb109
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,3 +4,4 @@ members = [ | |
| "umbral-pre-wasm", | ||
| "umbral-pre-python", | ||
| ] | ||
| resolver = "2" | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,6 +8,7 @@ description = "Implementation of Umbral proxy reencryption algorithm" | |||||
| repository = "https://github.com/nucypher/rust-umbral/tree/master/umbral-pre" | ||||||
| readme = "README.md" | ||||||
| categories = ["cryptography", "no-std"] | ||||||
| rust-version = "1.81" | ||||||
|
|
||||||
| [dependencies] | ||||||
| k256 = { version = "0.13", default-features = false, features = ["ecdsa", "arithmetic", "hash2curve"] } | ||||||
|
|
@@ -18,24 +19,27 @@ hex = { version = "0.4", default-features = false, features = ["alloc"] } | |||||
| serde = { version = "1", default-features = false, features = ["derive"], optional = true } | ||||||
| base64 = { version = "0.21", default-features = false, features = ["alloc"] } | ||||||
| rmp-serde = { version = "1", optional = true } | ||||||
| pyo3 = { version = "0.18", optional = true } | ||||||
| pyo3 = { version = "0.27", optional = true } | ||||||
| js-sys = { version = "0.3.63", optional = true } | ||||||
| wasm-bindgen = { version = "0.2.86", optional = true } | ||||||
| derive_more = { version = "0.99", optional = true, default_features = false, features = ["as_ref", "from", "into"] } | ||||||
| wasm-bindgen-derive = { version = "0.2.0", optional = true } | ||||||
| derive_more = { version = "0.99", optional = true, default-features = false, features = ["as_ref", "from", "into"] } | ||||||
| wasm-bindgen-derive = { version = "0.3", optional = true } | ||||||
| serde-encoded-bytes = { version = "0.2", optional = true, features = ["hex", "generic-array-014"] } | ||||||
| secrecy = { version = "0.10", default-features = false } | ||||||
|
|
||||||
| # These packages are among the dependencies of the packages above. | ||||||
| # Their versions should be updated when the main packages above are updated. | ||||||
| generic-array = { version = "0.14.6", features = ["zeroize"] } | ||||||
| generic-array = { version = "=0.14.7", features = ["zeroize"] } | ||||||
|
||||||
| generic-array = { version = "=0.14.7", features = ["zeroize"] } | |
| generic-array = { version = "0.14.7", features = ["zeroize"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately the author of generic-array screwed everyone by adding deprecation notices to every single API item in 0.14.8 (in an effort to make people switch to 1.x I guess, see fizyk20/generic-array#158). But the RustCrypto stack libraries we depend on still use 0.14, so we can't upgrade.
Uh oh!
There was an error while loading. Please reload this page.