mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
880565cb81
Some checks failed
Coordinator Tests / build (push) Has been cancelled
crypto/ Tests / test-crypto (push) Has been cancelled
Full Stack Tests / build (push) Has been cancelled
Lint / clippy (macos-13) (push) Has been cancelled
Lint / clippy (macos-14) (push) Has been cancelled
Lint / clippy (ubuntu-latest) (push) Has been cancelled
Lint / clippy (windows-latest) (push) Has been cancelled
Lint / deny (push) Has been cancelled
Lint / fmt (push) Has been cancelled
Lint / machete (push) Has been cancelled
Message Queue Tests / build (push) Has been cancelled
Monero Tests / unit-tests (push) Has been cancelled
Reproducible Runtime / build (push) Has been cancelled
Tests / test-infra (push) Has been cancelled
common/ Tests / test-common (push) Has been cancelled
Monero Tests / integration-tests (v0.17.3.2) (push) Has been cancelled
Monero Tests / integration-tests (v0.18.2.0) (push) Has been cancelled
networks/ Tests / test-networks (push) Has been cancelled
no-std build / build (push) Has been cancelled
Processor Tests / build (push) Has been cancelled
Tests / test-substrate (push) Has been cancelled
Tests / test-serai-client (push) Has been cancelled
Preserves the fn accessors within the Monero crates so that we can use statics in some cfgs yet not all (in order to provide support for more low-memory devices) with the exception of `H` (which truly should be cached).
75 lines
2.8 KiB
TOML
75 lines
2.8 KiB
TOML
[package]
|
|
name = "monero-wallet"
|
|
version = "0.1.0"
|
|
description = "Wallet functionality for the Monero protocol, built around monero-serai"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/networks/monero/wallet"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.80"
|
|
|
|
[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"] }
|
|
|
|
rand_core = { version = "0.6", default-features = false }
|
|
# Used to send transactions
|
|
rand = { version = "0.8", default-features = false }
|
|
rand_chacha = { version = "0.3", default-features = false }
|
|
# Used to select decoys
|
|
rand_distr = { version = "0.4", default-features = false }
|
|
|
|
curve25519-dalek = { version = "4", default-features = false, features = ["alloc", "zeroize", "group"] }
|
|
|
|
# Multisig dependencies
|
|
transcript = { package = "flexible-transcript", path = "../../../crypto/transcript", version = "0.3", default-features = false, features = ["recommended"], optional = true }
|
|
group = { version = "0.13", default-features = false, optional = true }
|
|
dalek-ff-group = { path = "../../../crypto/dalek-ff-group", version = "0.4", default-features = false, optional = true }
|
|
frost = { package = "modular-frost", path = "../../../crypto/frost", default-features = false, features = ["ed25519"], optional = true }
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["alloc"] }
|
|
|
|
monero-serai = { path = "..", default-features = false }
|
|
monero-rpc = { path = "../rpc", default-features = false }
|
|
monero-address = { path = "./address", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1", default-features = false, features = ["derive", "alloc", "std"] }
|
|
serde_json = { version = "1", default-features = false, features = ["alloc", "std"] }
|
|
|
|
frost = { package = "modular-frost", path = "../../../crypto/frost", default-features = false, features = ["ed25519", "tests"] }
|
|
|
|
tokio = { version = "1", features = ["sync", "macros"] }
|
|
|
|
monero-simple-request-rpc = { path = "../rpc/simple-request", default-features = false }
|
|
|
|
[features]
|
|
std = [
|
|
"std-shims/std",
|
|
|
|
"thiserror",
|
|
|
|
"zeroize/std",
|
|
|
|
"rand_core/std",
|
|
"rand/std",
|
|
"rand_chacha/std",
|
|
"rand_distr/std",
|
|
|
|
"monero-serai/std",
|
|
"monero-rpc/std",
|
|
"monero-address/std",
|
|
]
|
|
compile-time-generators = ["curve25519-dalek/precomputed-tables", "monero-serai/compile-time-generators"]
|
|
multisig = ["transcript", "group", "dalek-ff-group", "frost", "monero-serai/multisig", "std"]
|
|
default = ["std", "compile-time-generators"]
|