[package] name = "generalized-schnorr" version = "0.1.0" description = "Generalized Schnorr Protocols" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/schnorr" authors = ["Luke Parker "] keywords = ["schnorr", "ff", "group"] edition = "2021" rust-version = "1.74" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [lints] workspace = true [dependencies] std-shims = { path = "../../common/std-shims", version = "^0.1.1", default-features = false } rand_core = { version = "0.6", default-features = false } zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] } transcript = { package = "flexible-transcript", path = "../transcript", version = "^0.3.2", default-features = false } ciphersuite = { path = "../ciphersuite", version = "^0.4.1", default-features = false, features = ["alloc"] } multiexp = { path = "../multiexp", version = "0.4", default-features = false, features = ["batch"] } [dev-dependencies] hex = "0.4" rand_core = { version = "0.6", features = ["std"] } transcript = { package = "flexible-transcript", path = "../transcript", features = ["recommended"] } ciphersuite = { path = "../ciphersuite", features = ["ed25519"] } [features] std = ["std-shims/std", "rand_core/std", "zeroize/std", "ciphersuite/std", "multiexp/std"] default = ["std"]