2018-11-16 08:04:46 -08:00
|
|
|
[package]
|
2019-12-16 13:05:17 -08:00
|
|
|
name = "solana-faucet"
|
|
|
|
description = "Solana Faucet"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-faucet"
|
2023-02-23 06:01:54 -08:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2018-11-16 08:04:46 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
bincode = { workspace = true }
|
|
|
|
byteorder = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_derive = { workspace = true }
|
|
|
|
solana-clap-utils = { workspace = true }
|
|
|
|
solana-cli-config = { workspace = true }
|
|
|
|
solana-logger = { workspace = true }
|
|
|
|
solana-metrics = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-version = { workspace = true }
|
|
|
|
spl-memo = { workspace = true, features = ["no-entrypoint"] }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2018-11-16 08:04:46 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
2019-12-16 13:05:17 -08:00
|
|
|
name = "solana_faucet"
|
2018-11-16 08:04:46 -08:00
|
|
|
|
|
|
|
[[bin]]
|
2019-12-16 13:05:17 -08:00
|
|
|
name = "solana-faucet"
|
|
|
|
path = "src/bin/faucet.rs"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|