Files
solana/net-utils/Cargo.toml

40 lines
998 B
TOML
Raw Permalink Normal View History

2018-12-14 17:14:49 -08:00
[package]
name = "solana-net-utils"
2021-04-20 08:52:13 -07:00
version = "1.5.20"
2018-12-14 17:14:49 -08:00
description = "Solana Network Utilities"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
2018-12-14 17:14:49 -08:00
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-net-utils"
2018-12-14 17:14:49 -08:00
edition = "2018"
[dependencies]
bincode = "1.3.1"
clap = "2.33.1"
log = "0.4.11"
nix = "0.19.0"
2020-04-27 09:33:33 -07:00
rand = "0.7.0"
chore: bump serde from 1.0.112 to 1.0.118 (bp #14828) (#15394) * chore: bump serde from 1.0.112 to 1.0.118 (#14828) * chore: bump serde from 1.0.112 to 1.0.122 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.112 to 1.0.122. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.112...v1.0.122) Signed-off-by: dependabot[bot] <support@github.com> * [auto-commit] Update all Cargo lock files * Update frozen_abi digest following serde update * Revert "chore: bump serde from 1.0.112 to 1.0.122" This reverts commit a3ef4442a4c985144ae2bd7ceaf8899a7ab8d7c0. * Revert "[auto-commit] Update all Cargo lock files" This reverts commit c41c3b005fb1ccade55155302c52cd5736c4b55f. * chore: bump serde from 1.0.112 to 1.0.118 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.112 to 1.0.118. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.112...v1.0.118) Signed-off-by: dependabot[bot] <support@github.com> * [auto-commit] Update all Cargo lock files * Remove serum-dex pinning * blind commit! Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com> Co-authored-by: Ryo Onodera <ryoqun@gmail.com> (cherry picked from commit 1df93fa2bef7b987b14915f1ae2a005a49755424) # Conflicts: # banks-interface/Cargo.toml # perf/Cargo.toml # programs/config/Cargo.toml * Fix conflicts Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ryo Onodera <ryoqun@gmail.com>
2021-02-18 13:29:17 +00:00
serde = "1.0.118"
serde_derive = "1.0.103"
2020-12-11 13:32:35 -07:00
socket2 = "0.3.17"
2021-04-20 08:52:13 -07:00
solana-clap-utils = { path = "../clap-utils", version = "=1.5.20" }
solana-logger = { path = "../logger", version = "=1.5.20" }
solana-version = { path = "../version", version = "=1.5.20" }
2020-12-30 21:03:30 -08:00
tokio = { version = "0.3.5", features = ["full"] }
2020-06-30 09:57:16 -06:00
url = "2.1.1"
2018-12-14 17:14:49 -08:00
[lib]
name = "solana_net_utils"
[[bin]]
name = "solana-ip-address"
path = "src/bin/ip_address.rs"
[[bin]]
name = "solana-ip-address-server"
path = "src/bin/ip_address_server.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]