monaco-sdk 0.8.21

Typed Rust client for the Monaco REST API — generated from the OpenAPI specification
Documentation
[package]
name = "monaco-sdk"
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "Typed Rust client for the Monaco REST API — generated from the OpenAPI specification"
license = "MIT"
repository = "https://github.com/Monaco-Research/monaco-core"
homepage = "https://github.com/Monaco-Research/monaco-core/tree/main/rust-sdk"
documentation = "https://docs.rs/monaco-sdk"
readme = "README.md"
keywords = ["monaco", "dex", "trading", "api", "sdk"]
categories = ["api-bindings", "web-programming::http-client"]

[dependencies]
chrono = { version = "0.4", default-features = false, features = ["serde"] }
futures-core = "0.3"
progenitor-client = "0.13"
reqwest = { version = "0.13", default-features = false, features = ["json", "stream", "rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["serde", "v4"] }
regress = "0.10"

[dev-dependencies]
alloy = { workspace = true }
dotenvy = { workspace = true }
ed25519-dalek = { workspace = true }
rand = { workspace = true }
tokio = { version = "1", features = ["full"] }

[build-dependencies]
openapiv3 = "2.2"
progenitor = "0.13"
prettyplease = "0.2"
serde_json = "1.0"
serde_yaml = "0.9"
syn = "2.0"

# This crate's entire public API is generated at build time by progenitor from
# openapi/openapi.yaml (see build.rs); the generated client is written to
# OUT_DIR and pulled in by src/lib.rs via include!(). cargo-machete only scans
# committed source — where lib.rs has no `use` statements — so it cannot see
# that these crates are consumed by the generated code (runtime deps) or by
# build.rs (build deps). Every entry below is genuinely required:
#   build.rs           : openapiv3, progenitor, prettyplease, serde_json, serde_yaml, syn
#   generated client   : progenitor-client, reqwest, serde, serde_json, regress
#   spec-conditional   : chrono + futures-core (progenitor emits these only when
#                        the spec gains date-time / streaming fields; kept so a
#                        future `make docs-gen` regeneration never fails to build)
[package.metadata.cargo-machete]
ignored = [
    "chrono",
    "futures-core",
    "openapiv3",
    "prettyplease",
    "progenitor",
    "progenitor-client",
    "regress",
    "reqwest",
    "serde",
    "serde_json",
    "serde_yaml",
    "syn",
]