Skip to content

Commit

Permalink
rm vk feature
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Feb 13, 2024
1 parent ea9a633 commit a9867eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions crates/delano-keys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"
crate-type = ["cdylib", "lib"]

[dependencies]
blastkids = { git = "https://github.com/DougAnderson444/blastkids.git", version ="0.1.6", optional = true }
bls12_381_plus = { version = "0.8.13", git= "https://github.com/mikelodder7/bls12_381_plus.git", rev = "91a399e9a5f326816f13a0feab898ff40a7a1599", features = ["expose-fields", "alloc"], optional = true }
blastkids = { git = "https://github.com/DougAnderson444/blastkids.git", version ="0.1.6" }
bls12_381_plus = { version = "0.8.13", git= "https://github.com/mikelodder7/bls12_381_plus.git", rev = "91a399e9a5f326816f13a0feab898ff40a7a1599", features = ["expose-fields", "alloc"] }
cid = { version = "0.10.1", optional = true }
secrecy = "0.8.0"
serde = { version = "1.0.130", features = ["derive"], optional = true }
Expand All @@ -17,5 +17,4 @@ getrandom = "0.2"

[features]
default = ["serde"]
vk = ["blastkids", "bls12_381_plus", "serde"]
publish = ["cid"]
1 change: 0 additions & 1 deletion crates/delano-keys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

/// The Verification Key Module
/// Requires `vk` feature
#[cfg(feature = "vk")]
pub mod vk;

/// Requires `deterministic` feature
Expand Down
2 changes: 1 addition & 1 deletion crates/delanocreds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ crate-type = ["cdylib", "lib"]

[dependencies]
bls12_381_plus = { workspace = true }
delano-keys = { workspace = true, features = ["serde", "vk"] }
delano-keys = { workspace = true }
anyhow = "1.0.70"
cid = "0.10.1"
secrecy = "0.8.0"
Expand Down

0 comments on commit a9867eb

Please sign in to comment.