mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
ac708b3b2a
* Move monero-serai from std to std-shims, where possible * no-std fixes * Make the HttpRpc its own feature, thiserror only on std * Drop monero-rs's epee for a homegrown one We only need it for a single function. While I tried jeffro's, it didn't work out of the box, had three unimplemented!s, and is no where near viable for no_std. Fixes #182, though should be further tested. * no-std monero-serai * Allow base58-monero via git * cargo fmt
34 lines
1.4 KiB
TOML
34 lines
1.4 KiB
TOML
[package]
|
|
name = "serai-no-std"
|
|
version = "0.1.0"
|
|
description = "A crate to test no-std builds of Serai crates work"
|
|
license = "MIT"
|
|
repository = "https://github.com/kayabaNerve/serai/tree/develop/common/std-shims"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["nostd", "no_std", "alloc", "io"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
flexible-transcript = { path = "../../crypto/transcript", features = ["recommended", "merlin"] }
|
|
|
|
dalek-ff-group = { path = "../../crypto/dalek-ff-group" }
|
|
minimal-ed448 = { path = "../../crypto/ed448" }
|
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["alloc", "secp256k1", "p256", "ed25519", "ristretto", "ed448"] }
|
|
|
|
multiexp = { path = "../../crypto/multiexp", default-features = false, features = ["batch"] }
|
|
|
|
dleq = { path = "../../crypto/dleq", default-features = false }
|
|
schnorr-signatures = { path = "../../crypto/schnorr", default-features = false }
|
|
|
|
dkg = { path = "../../crypto/dkg", default-features = false }
|
|
# modular-frost = { path = "../../crypto/frost", default-features = false }
|
|
# frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false }
|
|
|
|
monero-generators = { path = "../../coins/monero/generators", default-features = false }
|
|
monero-serai = { path = "../../coins/monero", default-features = false }
|