Aere Network public source. Everything here can be checked against the live chain (chain id 2800, https://rpc.aere.network). Scope note, stated up front rather than buried: consensus on chain 2800 is classical secp256k1 ECDSA QBFT. The post-quantum work in this repository is at the signature, precompile, account and transport layers. Nothing here makes the consensus post-quantum, and no document in it should be read as claiming so.
498 lines
12 KiB
TOML
498 lines
12 KiB
TOML
# This file is automatically @generated by Cargo.
|
|
# It is not intended for manual editing.
|
|
version = 4
|
|
|
|
[[package]]
|
|
name = "autocfg"
|
|
version = "1.5.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
|
|
[[package]]
|
|
name = "cfg-if"
|
|
version = "1.0.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
|
[[package]]
|
|
name = "either"
|
|
version = "1.16.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
|
|
[[package]]
|
|
name = "fri-extractor"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"p3-baby-bear",
|
|
"p3-challenger",
|
|
"p3-commit",
|
|
"p3-dft",
|
|
"p3-field",
|
|
"p3-fri",
|
|
"p3-matrix",
|
|
"p3-merkle-tree",
|
|
"p3-poseidon2",
|
|
"p3-symmetric",
|
|
"p3-util",
|
|
"rand",
|
|
"rand_xoshiro",
|
|
]
|
|
|
|
[[package]]
|
|
name = "gcd"
|
|
version = "2.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a"
|
|
|
|
[[package]]
|
|
name = "getrandom"
|
|
version = "0.2.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"libc",
|
|
"wasi",
|
|
]
|
|
|
|
[[package]]
|
|
name = "itertools"
|
|
version = "0.12.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
dependencies = [
|
|
"either",
|
|
]
|
|
|
|
[[package]]
|
|
name = "libc"
|
|
version = "0.2.186"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
|
|
[[package]]
|
|
name = "num-bigint"
|
|
version = "0.4.8"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
dependencies = [
|
|
"num-integer",
|
|
"num-traits",
|
|
]
|
|
|
|
[[package]]
|
|
name = "num-integer"
|
|
version = "0.1.46"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
dependencies = [
|
|
"num-traits",
|
|
]
|
|
|
|
[[package]]
|
|
name = "num-traits"
|
|
version = "0.2.19"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
dependencies = [
|
|
"autocfg",
|
|
]
|
|
|
|
[[package]]
|
|
name = "once_cell"
|
|
version = "1.21.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
|
|
[[package]]
|
|
name = "p3-baby-bear"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d69e6e9af4eaaaa60f7bb9f0e0f73ebcbaefe7e00974d97ad0fa542d6a4f0890"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"num-bigint",
|
|
"p3-field",
|
|
"p3-mds",
|
|
"p3-poseidon2",
|
|
"p3-symmetric",
|
|
"rand",
|
|
"rustc_version",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-challenger"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b6a908924d43e4cfb93fb41c8346cac211b70314385a9037e9241f5b7f3eaf77"
|
|
dependencies = [
|
|
"p3-field",
|
|
"p3-maybe-rayon",
|
|
"p3-symmetric",
|
|
"p3-util",
|
|
"serde",
|
|
"tracing",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-commit"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "50acacc7219fce6c01db938f82c1b21b5e7133990b7fff861f91534aeb569419"
|
|
dependencies = [
|
|
"itertools",
|
|
"p3-challenger",
|
|
"p3-field",
|
|
"p3-matrix",
|
|
"p3-util",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-dft"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "be6408b10a2c27eb13a7d5580c546c2179a8dc7dbc10a990657311891f9b41c0"
|
|
dependencies = [
|
|
"p3-field",
|
|
"p3-matrix",
|
|
"p3-maybe-rayon",
|
|
"p3-util",
|
|
"tracing",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-field"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3dc75969ca3ac847f43e632ab979d59ff7a68f9eac8dbf8edcbba47fc2e1d3aa"
|
|
dependencies = [
|
|
"itertools",
|
|
"num-bigint",
|
|
"num-traits",
|
|
"p3-util",
|
|
"rand",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-fri"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5cbc4965ee488f3247867b7ec4bb005b8afa72cb0d461a4dcb1387ecab6426d5"
|
|
dependencies = [
|
|
"itertools",
|
|
"p3-challenger",
|
|
"p3-commit",
|
|
"p3-dft",
|
|
"p3-field",
|
|
"p3-interpolation",
|
|
"p3-matrix",
|
|
"p3-maybe-rayon",
|
|
"p3-util",
|
|
"serde",
|
|
"tracing",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-interpolation"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "08ad7e9f08c336d7ea39d12e11951188473542565323bac2a6535e536b58487d"
|
|
dependencies = [
|
|
"p3-field",
|
|
"p3-matrix",
|
|
"p3-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-matrix"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "75c3f150ceb90e09539413bf481e618d05ee19210b4e467d2902eb82d2e15281"
|
|
dependencies = [
|
|
"itertools",
|
|
"p3-field",
|
|
"p3-maybe-rayon",
|
|
"p3-util",
|
|
"rand",
|
|
"serde",
|
|
"tracing",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-maybe-rayon"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e0641952b42da45e1dfa2d4a2a3163e330f944ad9740942f35026c0a71a605f1"
|
|
|
|
[[package]]
|
|
name = "p3-mds"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "aa4a5f250e174dcfca5cbeac6ad75713924e7e7320e0a335e3c50b8b1f4fe8ec"
|
|
dependencies = [
|
|
"itertools",
|
|
"p3-dft",
|
|
"p3-field",
|
|
"p3-matrix",
|
|
"p3-symmetric",
|
|
"p3-util",
|
|
"rand",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-merkle-tree"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d5703d9229d52a8c09970e4d722c3a8b4d37e688c306c3a1c03b872efcd204e6"
|
|
dependencies = [
|
|
"itertools",
|
|
"p3-commit",
|
|
"p3-field",
|
|
"p3-matrix",
|
|
"p3-maybe-rayon",
|
|
"p3-symmetric",
|
|
"p3-util",
|
|
"serde",
|
|
"tracing",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-poseidon2"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "522986377b2164c5f94f2dae88e0e0a3d169cc6239202ef4aeb4322d60feffd0"
|
|
dependencies = [
|
|
"gcd",
|
|
"p3-field",
|
|
"p3-mds",
|
|
"p3-symmetric",
|
|
"rand",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-symmetric"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9047ce85c086a9b3f118e10078f10636f7bfeed5da871a04da0b61400af8793a"
|
|
dependencies = [
|
|
"itertools",
|
|
"p3-field",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "p3-util"
|
|
version = "0.4.3-succinct"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cff962f8eaa5f36e0447cee7c241f6b4b475fadf3ee61f154327a26bb4e009ba"
|
|
dependencies = [
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "pin-project-lite"
|
|
version = "0.2.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
|
[[package]]
|
|
name = "ppv-lite86"
|
|
version = "0.2.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
dependencies = [
|
|
"zerocopy",
|
|
]
|
|
|
|
[[package]]
|
|
name = "proc-macro2"
|
|
version = "1.0.107"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "quote"
|
|
version = "1.0.47"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rand"
|
|
version = "0.8.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
dependencies = [
|
|
"libc",
|
|
"rand_chacha",
|
|
"rand_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rand_chacha"
|
|
version = "0.3.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
dependencies = [
|
|
"ppv-lite86",
|
|
"rand_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rand_core"
|
|
version = "0.6.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
dependencies = [
|
|
"getrandom",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rand_xoshiro"
|
|
version = "0.6.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
|
|
dependencies = [
|
|
"rand_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rustc_version"
|
|
version = "0.4.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
dependencies = [
|
|
"semver",
|
|
]
|
|
|
|
[[package]]
|
|
name = "semver"
|
|
version = "1.0.28"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
|
|
[[package]]
|
|
name = "serde"
|
|
version = "1.0.229"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
dependencies = [
|
|
"serde_core",
|
|
"serde_derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "serde_core"
|
|
version = "1.0.229"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
dependencies = [
|
|
"serde_derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "serde_derive"
|
|
version = "1.0.229"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn 3.0.0",
|
|
]
|
|
|
|
[[package]]
|
|
name = "syn"
|
|
version = "2.0.119"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "syn"
|
|
version = "3.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f2fac314a64dc9a36e61a9eb4261a5e9bbfbc922b27e518af97bc32b926cf967"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "tracing"
|
|
version = "0.1.44"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
dependencies = [
|
|
"pin-project-lite",
|
|
"tracing-attributes",
|
|
"tracing-core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "tracing-attributes"
|
|
version = "0.1.31"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn 2.0.119",
|
|
]
|
|
|
|
[[package]]
|
|
name = "tracing-core"
|
|
version = "0.1.36"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
dependencies = [
|
|
"once_cell",
|
|
]
|
|
|
|
[[package]]
|
|
name = "unicode-ident"
|
|
version = "1.0.24"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
|
|
[[package]]
|
|
name = "wasi"
|
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
|
[[package]]
|
|
name = "zerocopy"
|
|
version = "0.8.54"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
dependencies = [
|
|
"zerocopy-derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "zerocopy-derive"
|
|
version = "0.8.54"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn 2.0.119",
|
|
]
|