mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
38ef04eb53
- Removal of Arkworks unit tests. These tests were just testing the arkworks upstream implementation which should be assumed correct. This is not the place to test well known dependencies. - Removal of some over-engineering. We just store the calls to Arkworks in one file. Per-curve sources are not required. - Docs formatting --- I also took the opportunity to bump the `bandersnatch-vrfs` crate revision internally providing some new shiny stuff.
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "sp-crypto-ec-utils"
|
|
version = "0.4.0"
|
|
authors.workspace = true
|
|
description = "Host functions for common Arkworks elliptic curve operations"
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
ark-ec = { version = "0.4.2", default-features = false }
|
|
ark-bls12-377 = { version = "0.4.0", features = ["curve"], default-features = false }
|
|
ark-bls12-381 = { version = "0.4.0", features = ["curve"], default-features = false }
|
|
ark-bw6-761 = { version = "0.4.0", default-features = false }
|
|
ark-ed-on-bls12-381-bandersnatch = { version = "0.4.0", default-features = false }
|
|
ark-ed-on-bls12-377 = { version = "0.4.0", default-features = false }
|
|
ark-scale = { version = "0.0.11", features = ["hazmat"], default-features = false }
|
|
sp-runtime-interface = { path = "../../runtime-interface", default-features = false}
|
|
sp-std = { path = "../../std", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"ark-bls12-377/std",
|
|
"ark-bls12-381/std",
|
|
"ark-bw6-761/std",
|
|
"ark-ec/std",
|
|
"ark-ed-on-bls12-377/std",
|
|
"ark-ed-on-bls12-381-bandersnatch/std",
|
|
"ark-scale/std",
|
|
"sp-runtime-interface/std",
|
|
"sp-std/std",
|
|
]
|