Skip to content
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

fix(crypto): remove modules with non-published deps #540

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions pallas-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <nicolas@primetype.co.uk>",
"Andrew Westberg <andrewwestberg@gmail.com>",
]
authors = ["Nicolas Di Prima <nicolas@primetype.co.uk>", "Andrew Westberg <andrewwestberg@gmail.com>"]

[dependencies]
hex = "0.4"
Expand All @@ -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"
Expand Down
134 changes: 0 additions & 134 deletions pallas-crypto/src/kes/mod.rs

This file was deleted.

2 changes: 0 additions & 2 deletions pallas-crypto/src/lib.rs
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;
161 changes: 0 additions & 161 deletions pallas-crypto/src/vrf/mod.rs

This file was deleted.

Loading