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"
|
|
|
|
|
2023-03-17 00:16:57 +00:00
|
|
|
serde_json = "1"
|
|
|
|
serde = "1"
|
2022-07-16 21:45:41 +00:00
|
|
|
|
2023-03-06 13:22:04 +00:00
|
|
|
sha2 = "0.10"
|
2022-07-27 09:43:23 +00:00
|
|
|
sha3 = "0.10"
|
2022-07-16 21:45:41 +00:00
|
|
|
|
2023-03-28 08:38:01 +00:00
|
|
|
group = "0.13"
|
2023-04-16 03:21:18 +00:00
|
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits", "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"
|
|
|
|
|
2023-05-01 08:58:50 +00:00
|
|
|
ethers = { version = "2", default-features = false, features = ["abigen", "ethers-solc"] }
|
2022-07-16 21:45:41 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-09-12 11:47:03 +00:00
|
|
|
ethers-solc = { version = "2", default-features = false }
|
2022-10-16 03:46:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["macros"] }
|