2022-07-16 21:45:41 +00:00
|
|
|
[package]
|
|
|
|
name = "ethereum-serai"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "An Ethereum library supporting Schnorr signing and on-chain verification"
|
|
|
|
license = "AGPL-3.0-only"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coins/ethereum"
|
2022-07-16 21:45:41 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>", "Elizabeth Binks <elizabethjbinks@gmail.com>"]
|
|
|
|
edition = "2021"
|
2022-10-16 03:46:22 +00:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2022-07-16 21:45:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
thiserror = "1"
|
2022-07-27 09:43:23 +00:00
|
|
|
rand_core = "0.6"
|
|
|
|
|
2022-07-16 21:45:41 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
|
2022-07-27 09:43:23 +00:00
|
|
|
sha3 = "0.10"
|
2022-07-16 21:45:41 +00:00
|
|
|
|
2022-07-27 09:43:23 +00:00
|
|
|
group = "0.12"
|
2022-07-16 21:45:41 +00:00
|
|
|
k256 = { version = "0.11", features = ["arithmetic", "keccak256", "ecdsa"] }
|
2022-10-29 08:54:42 +00:00
|
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", features = ["secp256k1", "tests"] }
|
2022-07-27 09:43:23 +00:00
|
|
|
|
|
|
|
eyre = "0.6"
|
|
|
|
|
2022-12-07 23:05:06 +00:00
|
|
|
ethers = { version = "1", features = ["abigen", "ethers-solc"] }
|
2022-07-16 21:45:41 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-12-07 23:05:06 +00:00
|
|
|
ethers-solc = "1"
|
2022-10-16 03:46:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["macros"] }
|