-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(crypto): remove modules with non-published deps
- Loading branch information
Showing
4 changed files
with
1 addition
and
306 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 |
---|---|---|
|
@@ -8,10 +8,7 @@ homepage = "https://github.com/txpipe/pallas" | |
documentation = "https://docs.rs/pallas-crypto" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
authors = [ | ||
"Nicolas Di Prima <[email protected]>", | ||
"Andrew Westberg <[email protected]>", | ||
] | ||
authors = ["Nicolas Di Prima <[email protected]>", "Andrew Westberg <[email protected]>"] | ||
|
||
[dependencies] | ||
hex = "0.4" | ||
|
@@ -20,13 +17,8 @@ thiserror = "1.0" | |
rand_core = "0.6" | ||
pallas-codec = { version = "=0.31.0", path = "../pallas-codec" } | ||
serde = "1.0.143" | ||
kes-summed-ed25519 = { git = "https://github.com/txpipe/kes", rev = "f69fb357d46f6a18925543d785850059569d7e78" } | ||
zeroize = "1.8.1" | ||
|
||
# The vrf crate has not been fully tested in production environments and still has several upstream issues that | ||
# are open PRs but not merged yet. | ||
vrf_dalek = { git = "https://github.com/txpipe/vrf", rev = "044b45a1a919ba9d9c2471fc5c4d441f13086676" } | ||
|
||
[dev-dependencies] | ||
itertools = "0.13" | ||
quickcheck = "1.0" | ||
|
This file was deleted.
Oops, something went wrong.
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,8 +1,6 @@ | ||
extern crate core; | ||
|
||
pub mod hash; | ||
pub mod kes; | ||
pub mod key; | ||
pub mod memsec; | ||
pub mod nonce; | ||
pub mod vrf; |
This file was deleted.
Oops, something went wrong.