mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
c9003874ad
Reduces size of ethereum-serai and gives us clarity on what's used. Next should be rmeoving the ethers-provided signing code.
40 lines
1.6 KiB
TOML
40 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
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
thiserror = { version = "1", default-features = false }
|
|
eyre = { version = "0.6", default-features = false }
|
|
|
|
serde_json = { version = "1", default-features = false, features = ["std"] }
|
|
|
|
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-signers = { version = "2", default-features = false }
|
|
ethers-middleware = { version = "2", default-features = false }
|
|
ethers-providers = { version = "2", default-features = false }
|
|
ethers-contract = { version = "2", default-features = false, features = ["abigen", "providers"] }
|
|
ethers-solc = { version = "2", default-features = false }
|
|
|
|
[build-dependencies]
|
|
ethers-solc = { version = "2", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
sha2 = { version = "0.10", default-features = false, features = ["std"] }
|
|
tokio = { version = "1", features = ["macros"] }
|