-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
25 lines (24 loc) · 919 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "splash"
version = "0.2.0"
edition = "2021"
authors = ["dns <[email protected]>"]
description = "A decentralized network for sharing offers across the Chia ecosystem"
license = "MIT"
homepage = "https://dexie.space/splash"
repository = "https://github.com/dexie-space/splash"
keywords = ["p2p", "dexie", "chia", "blockchain", "crypto"]
[dependencies]
tokio = { version = "1.35", features = ["full"] }
futures = "0.3.30"
libp2p = { version = "0.54.0", features = [ "tokio", "gossipsub", "kad", "noise", "macros", "identify", "tcp", "yamux", "secp256k1"] }
clap = { version = "4.4.17", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "json", "rustls-tls"] }
warp = "0.3.6"
bech32 = "0.9.1"
hickory-resolver = "0.24.1"
thiserror = "1.0.63"
log = "0.4.22"
env_logger = "0.11.5"