acb1aa8df0
By attaching network defaults to the selector enum, we can get them either from DEFAULT_NETWORK or a selector passed as a dependency. Hopefully this opens up some venues for being able to toggle between networks at runtime.
16 lines
379 B
TOML
16 lines
379 B
TOML
[package]
|
|
name = "network-defaults"
|
|
version = "0.1.0"
|
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
hex-literal = "0.3.3"
|
|
once_cell = "1.7.2"
|
|
serde = {version = "1.0", features = ["derive"]}
|
|
thiserror = "1.0"
|
|
url = "2.2"
|