mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
140 lines
2.7 KiB
TOML
140 lines
2.7 KiB
TOML
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||
|
#
|
||
|
# When uploading crates to the registry Cargo will automatically
|
||
|
# "normalize" Cargo.toml files for maximal compatibility
|
||
|
# with all versions of Cargo and also rewrite `path` dependencies
|
||
|
# to registry (e.g., crates.io) dependencies.
|
||
|
#
|
||
|
# If you are reading this file be aware that the original Cargo.toml
|
||
|
# will likely look very different (and much more reasonable).
|
||
|
# See Cargo.toml.orig for the original contents.
|
||
|
|
||
|
[package]
|
||
|
edition = "2018"
|
||
|
name = "discv5"
|
||
|
version = "0.1.0-beta.13"
|
||
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
||
|
exclude = [".gitignore", ".github/*"]
|
||
|
description = "Implementation of the p2p discv5 discovery protocol"
|
||
|
readme = "./README.md"
|
||
|
keywords = ["peer-to-peer", "libp2p", "networking", "discovery", "discv5"]
|
||
|
categories = ["network-programming", "asynchronous"]
|
||
|
license = "MIT"
|
||
|
repository = "https://github.com/sigp/discv5"
|
||
|
[dependencies.aes]
|
||
|
version = "0.7.5"
|
||
|
features = ["ctr"]
|
||
|
|
||
|
[dependencies.aes-gcm]
|
||
|
version = "0.9.4"
|
||
|
|
||
|
[dependencies.arrayvec]
|
||
|
version = "0.7.2"
|
||
|
|
||
|
[dependencies.digest]
|
||
|
version = "0.10.1"
|
||
|
|
||
|
[dependencies.enr]
|
||
|
version = "0.6.2"
|
||
|
features = ["k256", "ed25519"]
|
||
|
|
||
|
[dependencies.fnv]
|
||
|
version = "1.0.7"
|
||
|
|
||
|
[dependencies.futures]
|
||
|
version = "0.3.19"
|
||
|
|
||
|
[dependencies.hashlink]
|
||
|
version = "0.7.0"
|
||
|
|
||
|
[dependencies.hex]
|
||
|
version = "0.4.3"
|
||
|
|
||
|
[dependencies.hkdf]
|
||
|
version = "0.12"
|
||
|
|
||
|
[dependencies.lazy_static]
|
||
|
version = "1.4.0"
|
||
|
|
||
|
[dependencies.libp2p-core]
|
||
|
version = "0.30.0"
|
||
|
optional = true
|
||
|
|
||
|
[dependencies.lru]
|
||
|
version = "0.7.1"
|
||
|
|
||
|
[dependencies.parking_lot]
|
||
|
version = "0.11.2"
|
||
|
|
||
|
[dependencies.rand]
|
||
|
version = "0.8.4"
|
||
|
package = "rand"
|
||
|
|
||
|
[dependencies.rlp]
|
||
|
version = "0.5.1"
|
||
|
|
||
|
[dependencies.sha2]
|
||
|
version = "0.10"
|
||
|
|
||
|
[dependencies.smallvec]
|
||
|
version = "1.7.0"
|
||
|
|
||
|
[dependencies.tokio]
|
||
|
version = "1.15.0"
|
||
|
features = ["net", "sync", "macros", "rt"]
|
||
|
|
||
|
[dependencies.tokio-stream]
|
||
|
version = "0.1.8"
|
||
|
|
||
|
[dependencies.tokio-util]
|
||
|
version = "0.6.9"
|
||
|
features = ["time"]
|
||
|
|
||
|
[dependencies.tracing]
|
||
|
version = "0.1.29"
|
||
|
features = ["log"]
|
||
|
|
||
|
[dependencies.tracing-subscriber]
|
||
|
version = "0.3.3"
|
||
|
features = ["env-filter"]
|
||
|
|
||
|
[dependencies.uint]
|
||
|
version = "0.9.1"
|
||
|
default-features = false
|
||
|
|
||
|
[dependencies.zeroize]
|
||
|
version = "1.4.3"
|
||
|
features = ["zeroize_derive"]
|
||
|
[dev-dependencies.env_logger]
|
||
|
version = "0.9.0"
|
||
|
|
||
|
[dev-dependencies.hex-literal]
|
||
|
version = "0.3.4"
|
||
|
|
||
|
[dev-dependencies.quickcheck]
|
||
|
version = "0.9.2"
|
||
|
|
||
|
[dev-dependencies.rand_07]
|
||
|
version = "0.7"
|
||
|
package = "rand"
|
||
|
|
||
|
[dev-dependencies.rand_core]
|
||
|
version = "0.6.3"
|
||
|
|
||
|
[dev-dependencies.rand_xorshift]
|
||
|
version = "0.3.0"
|
||
|
|
||
|
[dev-dependencies.simple_logger]
|
||
|
version = "1.16.0"
|
||
|
|
||
|
[dev-dependencies.tokio]
|
||
|
version = "1.15.0"
|
||
|
features = ["full"]
|
||
|
|
||
|
[dev-dependencies.tokio-util]
|
||
|
version = "0.6.9"
|
||
|
features = ["time"]
|
||
|
|
||
|
[features]
|
||
|
libp2p = ["libp2p-core"]
|