mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
42 lines
1.6 KiB
TOML
42 lines
1.6 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/coins/ethereum"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>", "Elizabeth Binks <elizabethjbinks@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
rust-version = "1.74"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
thiserror = { version = "1", default-features = false }
|
|
eyre = { version = "0.6", default-features = false }
|
|
|
|
sha3 = { version = "0.10", default-features = false, features = ["std"] }
|
|
|
|
group = { version = "0.13", default-features = false }
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "ecdsa"] }
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", features = ["secp256k1", "tests"] }
|
|
|
|
ethers-core = { version = "2", default-features = false }
|
|
ethers-providers = { version = "2", default-features = false }
|
|
ethers-contract = { version = "2", default-features = false, features = ["abigen", "providers"] }
|
|
|
|
[dev-dependencies]
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
serde = { version = "1", default-features = false, features = ["std"] }
|
|
serde_json = { version = "1", default-features = false, features = ["std"] }
|
|
|
|
sha2 = { version = "0.10", default-features = false, features = ["std"] }
|
|
|
|
tokio = { version = "1", features = ["macros"] }
|