mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-27 14:09:48 +00:00
0d5756ffcf
Some checks failed
Coordinator Tests / build (push) Waiting to run
Full Stack Tests / build (push) Waiting to run
Lint / clippy (macos-13) (push) Waiting to run
Lint / clippy (macos-14) (push) Waiting to run
Lint / clippy (ubuntu-latest) (push) Waiting to run
Lint / clippy (windows-latest) (push) Waiting to run
Lint / deny (push) Waiting to run
Lint / fmt (push) Waiting to run
Lint / machete (push) Waiting to run
Message Queue Tests / build (push) Waiting to run
Monero Tests / unit-tests (push) Waiting to run
Monero Tests / integration-tests (v0.17.3.2) (push) Waiting to run
Monero Tests / integration-tests (v0.18.2.0) (push) Waiting to run
networks/ Tests / test-networks (push) Waiting to run
no-std build / build (push) Waiting to run
Processor Tests / build (push) Waiting to run
Reproducible Runtime / build (push) Waiting to run
Tests / test-infra (push) Waiting to run
Tests / test-substrate (push) Waiting to run
Tests / test-serai-client (push) Waiting to run
common/ Tests / test-common (push) Has been cancelled
crypto/ Tests / test-crypto (push) Has been cancelled
Removes a dated proc-macro-crate patch.
49 lines
2 KiB
TOML
49 lines
2 KiB
TOML
[package]
|
|
name = "ethereum-serai"
|
|
version = "0.1.0"
|
|
description = "An Ethereum library supporting Schnorr signing and on-chain verification"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/networks/ethereum"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>", "Elizabeth Binks <elizabethjbinks@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
rust-version = "1.79"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
thiserror = { version = "1", default-features = false }
|
|
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", default-features = false, features = ["recommended"] }
|
|
|
|
group = { version = "0.13", default-features = false }
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "ecdsa", "arithmetic"] }
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", default-features = false, features = ["secp256k1"] }
|
|
|
|
alloy-core = { version = "0.8", default-features = false }
|
|
alloy-sol-types = { version = "0.8", default-features = false, features = ["json"] }
|
|
alloy-consensus = { version = "0.3", default-features = false, features = ["k256"] }
|
|
alloy-network = { version = "0.3", default-features = false }
|
|
alloy-rpc-types-eth = { version = "0.3", default-features = false }
|
|
alloy-rpc-client = { version = "0.3", default-features = false }
|
|
alloy-simple-request-transport = { path = "./alloy-simple-request-transport", default-features = false }
|
|
alloy-provider = { version = "0.3", default-features = false }
|
|
|
|
alloy-node-bindings = { version = "0.3", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", default-features = false, features = ["tests"] }
|
|
|
|
tokio = { version = "1", features = ["macros"] }
|
|
|
|
alloy-node-bindings = { version = "0.3", default-features = false }
|
|
|
|
[features]
|
|
tests = ["alloy-node-bindings", "frost/tests"]
|