mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "faucetd"
|
|
version = "0.4.1"
|
|
homepage = "https://dark.fi"
|
|
description = "DarkFi faucet daemon"
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
repository = "https://github.com/darkrenaissance/darkfi"
|
|
license = "AGPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-std = "1.12.0"
|
|
async-trait = "0.1.68"
|
|
blake3 = "1.3.3"
|
|
chrono = "0.4.26"
|
|
darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "zkas"]}
|
|
darkfi-serial = {path = "../../src/serial"}
|
|
darkfi-sdk = {path = "../../src/sdk"}
|
|
darkfi-money-contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
|
|
easy-parallel = "3.3.0"
|
|
log = "0.4.18"
|
|
rand = "0.8.5"
|
|
serde_json = "1.0.96"
|
|
signal-hook = "0.3.15"
|
|
signal-hook-async-std = "0.2.2"
|
|
simplelog = "0.12.1"
|
|
sled = "0.34.7"
|
|
smol = "1.3.0"
|
|
sqlx = {version = "0.6.3", features = ["runtime-async-std-rustls", "sqlite"]}
|
|
url = "2.4.0"
|
|
|
|
# Argument parsing
|
|
serde = {version = "1.0.163", features = ["derive"]}
|
|
structopt = "0.3.26"
|
|
structopt-toml = "0.5.1"
|