2025-11-04 19:02:37 -05:00
|
|
|
[package]
|
|
|
|
|
name = "serai-client-monero"
|
|
|
|
|
version = "0.1.0"
|
2025-11-06 03:08:43 -05:00
|
|
|
description = "A client for the Serai network's Monero functionality"
|
2025-11-04 19:02:37 -05:00
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client/monero"
|
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2025-11-06 03:08:43 -05:00
|
|
|
keywords = ["serai", "monero"]
|
2025-11-04 19:02:37 -05:00
|
|
|
edition = "2021"
|
|
|
|
|
rust-version = "1.85"
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
serai-primitives = { path = "../../primitives", version = "0.1", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
ciphersuite = { path = "../../../crypto/ciphersuite", default-features = false, features = ["std"] }
|
|
|
|
|
dalek-ff-group = { path = "../../../crypto/dalek-ff-group", default-features = false, features = ["std"] }
|
2025-11-22 08:54:46 -05:00
|
|
|
|
|
|
|
|
monero-ed25519 = { git = "https://github.com/monero-oxide/monero-oxide", rev = "af0368e16395dbdda47cd53e54ccdb78a80b87bf", version = "0.1.0", default-features = false, features = ["std"] }
|
|
|
|
|
monero-address = { git = "https://github.com/monero-oxide/monero-oxide", rev = "af0368e16395dbdda47cd53e54ccdb78a80b87bf", version = "0.1.0", default-features = false, features = ["std"] }
|