mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 13:39:37 +00:00
7d2d739042
* Rename the coins folder to networks Ethereum isn't a coin. It's a network. Resolves #357. * More renames of coins -> networks in orchestration * Correct paths in tests/ * cargo fmt
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
TOML
[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 <lukeparker5132@gmail.com>"]
|
|
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"]
|