38 lines
944 B
TOML
38 lines
944 B
TOML
[package]
|
|
name = "nym-exit-policy"
|
|
description = "Get and set the Nym Exit Policy, used by Exit Gateways"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# feature-specific dependencies:
|
|
|
|
## client feature
|
|
reqwest = { workspace = true, optional = true }
|
|
|
|
## openapi feature
|
|
serde_json = { workspace = true, optional = true }
|
|
utoipa = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
client = ["reqwest"]
|
|
openapi = ["utoipa", "serde_json"]
|