-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add no-std support to ciphersuite crates
- Loading branch information
1 parent
b255bb4
commit d63af09
Showing
16 changed files
with
91 additions
and
45 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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -6,8 +6,11 @@ edition = "2021" | |
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
authors = ["Deirdre Connolly <[email protected]>", "Chelsea Komlo <[email protected]>", | ||
"Conrado Gouvea <[email protected]>"] | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
"Conrado Gouvea <[email protected]>", | ||
] | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/ZcashFoundation/frost" | ||
|
@@ -22,7 +25,9 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
derive-getters = "0.3.0" | ||
document-features = "0.2.7" | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = ["internals"] } | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = [ | ||
"internals", | ||
], default-features = false } | ||
rand_core = "0.6" | ||
|
||
[dev-dependencies] | ||
|
@@ -32,11 +37,13 @@ nightly = [] | |
default = ["serialization", "cheater-detection"] | ||
serialization = ["serde", "frost-core/serialization"] | ||
#! ## Features | ||
## Enable standard library support. | ||
std = ["frost-core/std"] | ||
## Enable `serde` support for types that need to be communicated. You | ||
## can use `serde` to serialize structs with any encoder that supports | ||
## `serde` (e.g. JSON with `serde_json`). | ||
serde = ["frost-core/serde"] | ||
# Exposes ciphersuite-generic tests for other crates to use | ||
test-impl = ["frost-core/test-impl"] | ||
test-impl = ["frost-core/test-impl", "serialization"] | ||
## Enable cheater detection | ||
cheater-detection = ["frost-core/cheater-detection"] |
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
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
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
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
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