Files
komodo/client/core/rs/Cargo.toml
2025-10-27 18:31:30 -07:00

50 lines
1.4 KiB
TOML

[package]
name = "komodo_client"
description = "Client for the Komodo build and deployment system"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# default = ["blocking"] # use to dev client blocking mode
mongo = ["dep:mongo_indexed"]
blocking = ["reqwest/blocking"]
[dependencies]
# mogh
mongo_indexed = { workspace = true, optional = true }
serror = { workspace = true, features = ["axum"]}
derive_default_builder.workspace = true
derive_empty_traits.workspace = true
async_timing_util.workspace = true
partial_derive2.workspace = true
derive_variants.workspace = true
resolver_api.workspace = true
# external
tokio-tungstenite.workspace = true
derive_builder.workspace = true
futures-util.workspace = true
urlencoding.workspace = true
serde_json.workspace = true
tokio-util.workspace = true
ipnetwork.workspace = true
thiserror.workspace = true
typeshare.workspace = true
indexmap.workspace = true
serde_qs.workspace = true
reqwest.workspace = true
tracing.workspace = true
anyhow.workspace = true
bytes.workspace = true
serde.workspace = true
tokio.workspace = true
strum.workspace = true
bson.workspace = true
clap.workspace = true
envy.workspace = true
rand.workspace = true