mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 13:48:00 +00:00
1c15ca6ad1
* Macro-ify perthings. * Refactor fixed64 * Half-workign phragmen refactor. * Finalize phragmen refactor. * Fix creation of perquintill * Fix build errors * Line-width * Fix more build errors. * Line-width * Fix offence test * Resolve all TODOs. * Apply suggestions from code review Co-Authored-By: Gavin Wood <gavin@parity.io> Co-Authored-By: thiolliere <gui.thiolliere@gmail.com> * Fix most of the review comments. * Updates to multiply by rational * Fxi build * Fix abs issue with Fixed64 * Fix tests and improvements. * Fix build * Remove more tests from staking. * Review comments. * Add fuzzing stuff. * Better fuzzing * Better doc. * Bump. * Master.into() * A bit more hardening. * Final nits. * Update lock * Fix indent. * Revert lock file. * Bump.
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "sr-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
num-traits = { version = "0.2", default-features = false }
|
|
integer-sqrt = { version = "0.1.2" }
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
|
|
app-crypto = { package = "substrate-application-crypto", path = "../application-crypto", default-features = false }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
runtime_io = { package = "sr-io", path = "../sr-io", default-features = false }
|
|
log = { version = "0.4", optional = true }
|
|
paste = { version = "0.1"}
|
|
rand = { version = "0.7.0", optional = true }
|
|
impl-trait-for-tuples = "0.1.1"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
primitive-types = "0.5.0"
|
|
rand = "0.7.2"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"num-traits/std",
|
|
"serde",
|
|
"log",
|
|
"rstd/std",
|
|
"runtime_io/std",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"app-crypto/std",
|
|
"rand",
|
|
]
|