Browse Source

curve25519-dalek is only needed for tests; move it to dev-depencencies

Ian Goldberg 4 months ago
parent
commit
42ccd5f0dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Cargo.toml

+ 1 - 1
Cargo.toml

@@ -5,7 +5,6 @@ edition = "2021"
 
 [dependencies]
 cmzcred_derive = { path = "cmzcred_derive" }
-curve25519-dalek = { version = "4", features = [ "group", "rand_core", "digest" ] }
 ff = "0.13"
 generic_static = "0.2"
 group = "0.13"
@@ -20,5 +19,6 @@ thiserror = "2"
 
 [dev-dependencies]
 bincode = "1"
+curve25519-dalek = { version = "4", features = [ "group", "rand_core", "digest" ] }
 rand = "0.8"
 sha2 = "0.10"