feefde9022
* using common middleware for all http servers * improved span handling in credential-proxy * ensure increase in sequence number upon making deposit * added explicit connect options for the db * fixed further instances of incorrect span instrumentation * batch deposit requests together to improve concurrency * ignore cancelled requests * updated credential proxy version to 0.1.4 * adjusted Dockerfile with new binary location * log binary version on startup * reduce default log level * guard against unavaiable commit sha * apply review comments: dont exit(0), instead just shutdown normally * add skip_webhook parameter to obtain-async * removing dead code
30 lines
780 B
TOML
30 lines
780 B
TOML
[package]
|
|
name = "nym-http-api-common"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum-client-ip.workspace = true
|
|
axum.workspace = true
|
|
bytes = { workspace = true }
|
|
colored.workspace = true
|
|
futures = { workspace = true }
|
|
mime = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
serde_yaml = { workspace = true }
|
|
tower = { workspace = true }
|
|
tracing.workspace = true
|
|
utoipa = { workspace = true, optional = true }
|
|
zeroize = { workspace = true }
|
|
|
|
[features]
|
|
utoipa = ["dep:utoipa"]
|