Skip to content
Cargo.lock 421 KiB
Newer Older
Alexander's avatar
Alexander committed
 "libp2p",
 "linked_hash_set",
 "log",
 "mockall",
 "multistream-select",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "partial_sort",
 "pin-project",
 "rand 0.8.5",
 "sc-client-api",
 "sc-network-common",
 "sc-network-light",
 "sc-network-sync",
 "sc-utils",
 "serde",
 "serde_json",
 "smallvec",
 "sp-arithmetic",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "sp-test-primitives",
 "sp-tracing",
 "substrate-prometheus-endpoint",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "tempfile",
 "thiserror",
 "tokio",
 "tokio-test",
 "tokio-util",
 "unsigned-varint",
 "wasm-timer",
 "zeroize",
]

[[package]]
name = "sc-network-bitswap"
version = "0.10.0-dev"
dependencies = [
 "async-channel",
 "cid",
 "futures",
 "libp2p-identity",
 "log",
 "prost",
 "prost-build",
 "sc-block-builder",
 "sc-client-api",
 "sc-consensus",
 "sc-network",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-runtime",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "thiserror",
 "tokio",
 "unsigned-varint",
]

[[package]]
name = "sc-network-common"
version = "0.10.0-dev"
dependencies = [
 "async-trait",
 "bitflags 1.3.2",
 "futures",
 "libp2p-identity",
 "parity-scale-codec",
 "prost-build",
 "sc-consensus",
 "sp-consensus",
 "sp-consensus-grandpa",
 "sp-runtime",
 "tempfile",
]

[[package]]
name = "sc-network-gossip"
version = "0.10.0-dev"
dependencies = [
 "ahash 0.8.3",
 "futures",
 "futures-timer",
 "libp2p",
 "log",
 "quickcheck",
 "sc-network",
 "sc-network-common",
 "schnellru",
 "sp-runtime",
 "substrate-prometheus-endpoint",
 "substrate-test-runtime-client",
 "tokio",
 "tracing",
]

[[package]]
name = "sc-network-light"
version = "0.10.0-dev"
dependencies = [
 "array-bytes",
 "async-channel",
 "futures",
 "libp2p-identity",
 "log",
 "parity-scale-codec",
 "prost",
 "prost-build",
 "sc-client-api",
 "sc-network",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "thiserror",
]

[[package]]
name = "sc-network-statement"
version = "0.10.0-dev"
dependencies = [
 "array-bytes",
 "async-channel",
 "futures",
 "libp2p",
 "log",
 "parity-scale-codec",
 "sc-network",
 "sc-network-common",
 "sp-consensus",
 "sp-statement-store",
 "substrate-prometheus-endpoint",
]

[[package]]
name = "sc-network-sync"
version = "0.10.0-dev"
dependencies = [
 "array-bytes",
 "async-channel",
 "async-trait",
 "fork-tree",
 "futures",
 "futures-timer",
 "libp2p",
 "log",
 "mockall",
 "parity-scale-codec",
 "prost",
 "prost-build",
 "quickcheck",
 "sc-block-builder",
 "sc-client-api",
 "sc-consensus",
 "sc-network",
 "sc-network-common",
 "sc-utils",
 "schnellru",
 "smallvec",
 "sp-arithmetic",
 "sp-blockchain",
 "sp-consensus",
 "sp-consensus-grandpa",
 "sp-core",
 "sp-runtime",
 "sp-test-primitives",
 "sp-tracing",
 "substrate-prometheus-endpoint",
 "substrate-test-runtime-client",
 "thiserror",
 "tokio",
Alexander's avatar
Alexander committed
15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527
]

[[package]]
name = "sc-network-test"
version = "0.8.0"
dependencies = [
 "async-trait",
 "futures",
 "futures-timer",
 "libp2p",
 "log",
 "parking_lot 0.12.1",
 "rand 0.8.5",
 "sc-block-builder",
 "sc-client-api",
 "sc-consensus",
 "sc-network",
 "sc-network-common",
 "sc-network-light",
 "sc-network-sync",
 "sc-service",
 "sc-utils",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-runtime",
 "sp-tracing",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "tokio",
]

[[package]]
name = "sc-network-transactions"
version = "0.10.0-dev"
dependencies = [
 "array-bytes",
 "futures",
 "libp2p",
 "log",
 "parity-scale-codec",
 "sc-network",
 "sc-network-common",
 "sc-utils",
 "sp-consensus",
 "sp-runtime",
 "substrate-prometheus-endpoint",
]

[[package]]
name = "sc-offchain"
version = "4.0.0-dev"
dependencies = [
 "array-bytes",
 "bytes",
 "fnv",
 "futures",
 "futures-timer",
 "hyper",
 "hyper-rustls",
 "lazy_static",
 "libp2p",
 "log",
 "num_cpus",
 "once_cell",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "rand 0.8.5",
 "sc-block-builder",
 "sc-client-api",
 "sc-client-db",
 "sc-network",
 "sc-network-common",
 "sc-transaction-pool",
 "sc-transaction-pool-api",
 "sc-utils",
 "sp-api",
 "sp-consensus",
 "sp-core",
 "sp-externalities",
 "sp-keystore",
 "sp-offchain",
 "sp-runtime",
 "sp-tracing",
 "substrate-test-runtime-client",
 "threadpool",
 "tokio",
 "tracing",
]

[[package]]
name = "sc-proposer-metrics"
version = "0.10.0-dev"
dependencies = [
 "log",
 "substrate-prometheus-endpoint",
]

[[package]]
name = "sc-rpc"
version = "4.0.0-dev"
dependencies = [
 "assert_matches",
 "env_logger 0.9.3",
 "futures",
 "jsonrpsee",
 "log",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "pretty_assertions",
 "sc-block-builder",
 "sc-chain-spec",
 "sc-client-api",
 "sc-network",
 "sc-network-common",
 "sc-rpc-api",
 "sc-tracing",
 "sc-transaction-pool",
 "sc-transaction-pool-api",
 "sc-utils",
 "serde_json",
 "sp-api",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-io",
 "sp-keystore",
 "sp-offchain",
 "sp-rpc",
 "sp-runtime",
 "sp-session",
 "sp-statement-store",
 "sp-version",
 "substrate-test-runtime-client",
 "tokio",
]

[[package]]
name = "sc-rpc-api"
version = "0.10.0-dev"
dependencies = [
 "jsonrpsee",
 "parity-scale-codec",
 "sc-chain-spec",
 "sc-transaction-pool-api",
 "scale-info",
 "serde",
 "serde_json",
 "sp-core",
 "sp-rpc",
 "sp-runtime",
 "sp-version",
 "thiserror",
]

[[package]]
name = "sc-rpc-server"
version = "4.0.0-dev"
dependencies = [
 "http",
 "jsonrpsee",
 "log",
 "serde_json",
 "substrate-prometheus-endpoint",
 "tokio",
 "tower",
 "tower-http",
]

[[package]]
name = "sc-rpc-spec-v2"
version = "0.10.0-dev"
dependencies = [
 "array-bytes",
 "assert_matches",
 "futures",
 "futures-util",
 "hex",
 "jsonrpsee",
 "log",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "pretty_assertions",
 "sc-block-builder",
 "sc-chain-spec",
 "sc-client-api",
 "sc-service",
 "sc-transaction-pool-api",
 "sc-utils",
 "serde",
 "serde_json",
 "sp-api",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-maybe-compressed-blob",
 "sp-runtime",
 "sp-version",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "thiserror",
 "tokio",
 "tokio-stream",
]

[[package]]
name = "sc-runtime-test"
version = "2.0.0"
dependencies = [
 "sp-core",
 "sp-io",
 "sp-runtime",
 "sp-runtime-interface",
 "sp-std",
 "substrate-wasm-builder",
]

[[package]]
name = "sc-service"
version = "0.10.0-dev"
dependencies = [
 "async-trait",
 "directories",
 "exit-future",
 "futures",
 "futures-timer",
 "jsonrpsee",
 "log",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "pin-project",
 "rand 0.8.5",
 "sc-block-builder",
 "sc-chain-spec",
 "sc-client-api",
 "sc-client-db",
 "sc-consensus",
 "sc-executor",
 "sc-informant",
 "sc-keystore",
 "sc-network",
 "sc-network-bitswap",
 "sc-network-common",
 "sc-network-light",
 "sc-network-sync",
 "sc-network-transactions",
 "sc-rpc",
 "sc-rpc-server",
 "sc-rpc-spec-v2",
 "sc-sysinfo",
 "sc-telemetry",
 "sc-tracing",
 "sc-transaction-pool",
 "sc-transaction-pool-api",
 "sc-utils",
 "serde",
 "serde_json",
 "sp-api",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-externalities",
 "sp-keystore",
 "sp-runtime",
 "sp-session",
 "sp-state-machine",
 "sp-storage",
 "sp-transaction-pool",
 "sp-transaction-storage-proof",
 "sp-trie",
 "sp-version",
 "static_init 1.0.3",
 "substrate-prometheus-endpoint",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "tempfile",
 "thiserror",
 "tokio",
 "tracing",
 "tracing-futures",
]

[[package]]
name = "sc-service-test"
version = "2.0.0"
dependencies = [
 "array-bytes",
 "async-channel",
 "fdlimit",
 "futures",
 "log",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "sc-block-builder",
 "sc-client-api",
 "sc-client-db",
 "sc-consensus",
 "sc-executor",
 "sc-network",
 "sc-network-sync",
 "sc-service",
 "sc-transaction-pool-api",
 "sp-api",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-io",
 "sp-runtime",
 "sp-state-machine",
 "sp-storage",
 "sp-tracing",
 "sp-trie",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "tempfile",
 "tokio",
]

[[package]]
name = "sc-state-db"
version = "0.10.0-dev"
dependencies = [
 "log",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "sp-core",
]

[[package]]
name = "sc-statement-store"
version = "4.0.0-dev"
dependencies = [
 "env_logger 0.9.3",
 "log",
 "parity-db",
 "parking_lot 0.12.1",
 "sc-client-api",
 "sc-keystore",
 "sp-api",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "sp-statement-store",
 "substrate-prometheus-endpoint",
 "tempfile",
 "tokio",
]

[[package]]
name = "sc-storage-monitor"
version = "0.1.0"
dependencies = [
Alexander's avatar
Alexander committed
 "fs4",
 "log",
 "sc-client-db",
 "sp-core",
 "thiserror",
 "tokio",
]

[[package]]
name = "sc-sync-state-rpc"
version = "0.10.0-dev"
dependencies = [
 "jsonrpsee",
 "parity-scale-codec",
 "sc-chain-spec",
 "sc-client-api",
 "sc-consensus-babe",
 "sc-consensus-epochs",
 "sc-consensus-grandpa",
 "serde",
 "serde_json",
 "sp-blockchain",
 "sp-runtime",
 "thiserror",
]

[[package]]
name = "sc-sysinfo"
version = "6.0.0-dev"
dependencies = [
 "futures",
 "libc",
 "log",
 "rand 0.8.5",
 "rand_pcg",
 "regex",
 "sc-telemetry",
 "serde",
 "serde_json",
 "sp-core",
 "sp-io",
 "sp-runtime",
 "sp-std",
]

[[package]]
name = "sc-telemetry"
version = "4.0.0-dev"
dependencies = [
 "chrono",
 "futures",
 "libp2p",
 "log",
 "parking_lot 0.12.1",
 "pin-project",
 "rand 0.8.5",
 "sc-utils",
 "serde",
 "serde_json",
 "thiserror",
 "wasm-timer",
]

[[package]]
name = "sc-tracing"
version = "4.0.0-dev"
dependencies = [
 "ansi_term",
 "atty",
 "chrono",
 "criterion 0.4.0",
 "lazy_static",
 "libc",
 "log",
 "parking_lot 0.12.1",
 "regex",
 "rustc-hash",
 "sc-client-api",
 "sc-tracing-proc-macro",
 "serde",
 "sp-api",
 "sp-blockchain",
 "sp-core",
 "sp-rpc",
 "sp-runtime",
 "sp-tracing",
 "thiserror",
 "tracing",
 "tracing-log",
 "tracing-subscriber",
Alexander's avatar
Alexander committed
]

[[package]]
name = "sc-tracing-proc-macro"
version = "4.0.0-dev"
dependencies = [
 "proc-macro-crate",
 "proc-macro2",
 "quote",
Alexander's avatar
Alexander committed
15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900
]

[[package]]
name = "sc-transaction-pool"
version = "4.0.0-dev"
dependencies = [
 "array-bytes",
 "assert_matches",
 "async-trait",
 "criterion 0.4.0",
 "futures",
 "futures-timer",
 "linked-hash-map",
 "log",
 "parity-scale-codec",
 "parking_lot 0.12.1",
 "sc-block-builder",
 "sc-client-api",
 "sc-transaction-pool-api",
 "sc-utils",
 "serde",
 "sp-api",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-runtime",
 "sp-tracing",
 "sp-transaction-pool",
 "substrate-prometheus-endpoint",
 "substrate-test-runtime",
 "substrate-test-runtime-client",
 "substrate-test-runtime-transaction-pool",
 "thiserror",
]

[[package]]
name = "sc-transaction-pool-api"
version = "4.0.0-dev"
dependencies = [
 "async-trait",
 "futures",
 "log",
 "parity-scale-codec",
 "serde",
 "serde_json",
 "sp-blockchain",
 "sp-core",
 "sp-runtime",
 "thiserror",
]

[[package]]
name = "sc-utils"
version = "4.0.0-dev"
dependencies = [
 "async-channel",
 "futures",
 "futures-timer",
 "lazy_static",
 "log",
 "parking_lot 0.12.1",
 "prometheus",
 "sp-arithmetic",
 "tokio-test",
]

[[package]]
name = "scale-info"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782"
dependencies = [
 "bitvec",
 "cfg-if",
 "derive_more",
 "parity-scale-codec",
 "scale-info-derive",
 "serde",
]

[[package]]
name = "scale-info-derive"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29"
dependencies = [
 "proc-macro-crate",
 "proc-macro2",
 "quote",
 "syn 1.0.109",
]

[[package]]
name = "schannel"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
dependencies = [
 "windows-sys 0.48.0",
]

[[package]]
name = "schnellru"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d"
dependencies = [
 "ahash 0.8.3",
 "cfg-if",
 "hashbrown 0.13.2",
]

[[package]]
name = "schnorrkel"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"
dependencies = [
 "arrayref",
 "arrayvec 0.5.2",
 "curve25519-dalek 2.1.3",
 "getrandom 0.1.16",
 "merlin 2.0.1",
 "rand 0.7.3",
 "rand_core 0.5.1",
 "sha2 0.8.2",
 "subtle",
 "zeroize",
]

[[package]]
name = "schnorrkel"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "844b7645371e6ecdf61ff246ba1958c29e802881a749ae3fb1993675d210d28d"
dependencies = [
 "arrayref",
 "arrayvec 0.7.4",
 "curve25519-dalek-ng",
 "merlin 3.0.0",
 "rand_core 0.6.4",
 "sha2 0.9.9",
 "subtle-ng",
 "zeroize",
]

[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"

[[package]]
name = "scratch"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152"

[[package]]
name = "sct"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
 "ring 0.16.20",
 "untrusted",
]

[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
 "ring 0.16.20",
 "untrusted",
]

[[package]]
name = "sdp"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d22a5ef407871893fd72b4562ee15e4742269b173959db4b8df6f538c414e13"
dependencies = [
 "rand 0.8.5",
 "substring",
 "thiserror",
 "url",
]

[[package]]
name = "sec1"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
dependencies = [
 "base16ct 0.1.1",
 "der 0.6.1",
 "generic-array 0.14.7",
 "pkcs8 0.9.0",
 "subtle",
 "zeroize",
]

[[package]]
name = "sec1"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
dependencies = [
 "base16ct 0.2.0",
 "der 0.7.8",
 "generic-array 0.14.7",
 "pkcs8 0.10.2",
 "subtle",
 "zeroize",
]

[[package]]
name = "secp256k1"
version = "0.24.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62"
dependencies = [
 "secp256k1-sys",
]

[[package]]
name = "secp256k1-sys"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b"
dependencies = [
 "cc",
]

[[package]]
name = "secrecy"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
dependencies = [
 "zeroize",
]

[[package]]
name = "security-framework"
version = "2.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
dependencies = [
 "bitflags 1.3.2",
 "core-foundation",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "seedling-runtime"
version = "0.1.0"
dependencies = [
Alexander's avatar
Alexander committed
 "cumulus-pallet-parachain-system",
 "cumulus-pallet-solo-to-para",
 "cumulus-primitives-core",
 "cumulus-primitives-timestamp",
Alexander's avatar
Alexander committed
 "frame-executive",
 "frame-support",
 "frame-system",
Alexander's avatar
Alexander committed
 "pallet-balances",
 "pallet-sudo",
Alexander's avatar
Alexander committed
 "parachain-info",
 "parachains-common",
 "parity-scale-codec",
 "scale-info",
 "sp-api",
 "sp-block-builder",
Alexander's avatar
Alexander committed
 "sp-core",
Alexander's avatar
Alexander committed
 "sp-inherents",
 "sp-offchain",
 "sp-runtime",
 "sp-session",
 "sp-std",
 "sp-transaction-pool",
 "sp-version",
 "substrate-wasm-builder",
]

[[package]]
name = "semver"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537"
dependencies = [
 "semver-parser",
]

[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
 "semver-parser",
]

[[package]]
name = "semver"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
dependencies = [
 "serde",
]

[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"

[[package]]
name = "separator"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"

[[package]]
name = "serde"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
Alexander's avatar
Alexander committed
dependencies = [
 "serde_derive",
]

[[package]]
name = "serde_derive"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
Alexander's avatar
Alexander committed
dependencies = [
 "proc-macro2",
 "quote",
Alexander's avatar
Alexander committed
]

[[package]]
name = "serde_fmt"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
dependencies = [
 "serde",
]

[[package]]