mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-20 16:15:41 +00:00
Elliptic curves utilities refactory (#2068)
- Usage the new published [arkworks-extensions](https://github.com/paritytech/arkworks-extensions) crates. Hooks are internally defined to jump into the proper host functions. - Conditional compilation of each curve (gated by feature with curve name) - Separation in smaller host functions sets, divided by curve (fits nicely with prev point)
This commit is contained in:
@@ -12,26 +12,53 @@ repository.workspace = true
|
||||
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 }
|
||||
ark-ec = { version = "0.4.2", default-features = false, optional = true }
|
||||
ark-bls12-377-ext = { version = "0.4.1", default-features = false, optional = true }
|
||||
ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"], optional = true }
|
||||
ark-bls12-381-ext = { version = "0.4.1", default-features = false, optional = true }
|
||||
ark-bls12-381 = { version = "0.4.0", default-features = false, features = ["curve"], optional = true }
|
||||
ark-bw6-761-ext = { version = "0.4.1", default-features = false, optional = true }
|
||||
ark-bw6-761 = { version = "0.4.0", default-features = false, optional = true }
|
||||
ark-ed-on-bls12-381-bandersnatch-ext = { version = "0.4.1", default-features = false, optional = true }
|
||||
ark-ed-on-bls12-381-bandersnatch = { version = "0.4.0", default-features = false, optional = true }
|
||||
ark-ed-on-bls12-377-ext = { version = "0.4.1", default-features = false, optional = true }
|
||||
ark-ed-on-bls12-377 = { version = "0.4.0", default-features = false, optional = true }
|
||||
ark-scale = { version = "0.0.11", default-features = false, features = ["hazmat"], optional = true }
|
||||
sp-runtime-interface = { path = "../../runtime-interface", default-features = false, optional = true }
|
||||
sp-std = { path = "../../std", default-features = false, optional = true }
|
||||
|
||||
[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",
|
||||
"ark-bls12-377-ext?/std",
|
||||
"ark-bls12-377?/std",
|
||||
"ark-bls12-381-ext?/std",
|
||||
"ark-bls12-381?/std",
|
||||
"ark-bw6-761-ext?/std",
|
||||
"ark-bw6-761?/std",
|
||||
"ark-ec?/parallel",
|
||||
"ark-ed-on-bls12-377-ext?/std",
|
||||
"ark-ed-on-bls12-377?/std",
|
||||
"ark-ed-on-bls12-381-bandersnatch-ext?/std",
|
||||
"ark-ed-on-bls12-381-bandersnatch?/std",
|
||||
"ark-scale?/std",
|
||||
"sp-runtime-interface?/std",
|
||||
"sp-std?/std",
|
||||
]
|
||||
common = [ "ark-ec", "ark-scale", "sp-runtime-interface", "sp-std" ]
|
||||
bls12-377 = [ "ark-bls12-377", "ark-bls12-377-ext", "common" ]
|
||||
bls12-381 = [ "ark-bls12-381", "ark-bls12-381-ext", "common" ]
|
||||
bw6-761 = [ "ark-bw6-761", "ark-bw6-761-ext", "common" ]
|
||||
ed-on-bls12-377 = [ "ark-ed-on-bls12-377", "ark-ed-on-bls12-377-ext", "common" ]
|
||||
ed-on-bls12-381-bandersnatch = [
|
||||
"ark-ed-on-bls12-381-bandersnatch",
|
||||
"ark-ed-on-bls12-381-bandersnatch-ext",
|
||||
"common",
|
||||
]
|
||||
all-curves = [
|
||||
"bls12-377",
|
||||
"bls12-381",
|
||||
"bw6-761",
|
||||
"ed-on-bls12-377",
|
||||
"ed-on-bls12-381-bandersnatch",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user