[package] name = "monero-mlsag" version = "0.1.0" description = "The MLSAG linkable ring signature, as defined by the Monero protocol" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/networks/monero/ringct/mlsag" authors = ["Luke Parker "] edition = "2021" rust-version = "1.79" [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 } thiserror = { version = "1", default-features = false, optional = true } zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] } # Cryptographic dependencies curve25519-dalek = { version = "4", default-features = false, features = ["alloc", "zeroize"] } # Other Monero dependencies monero-io = { path = "../../io", version = "0.1", default-features = false } monero-generators = { path = "../../generators", version = "0.4", default-features = false } monero-primitives = { path = "../../primitives", version = "0.1", default-features = false } [features] std = [ "std-shims/std", "thiserror", "zeroize/std", "monero-io/std", "monero-generators/std", "monero-primitives/std", ] default = ["std"]