[package]
edition = "2021"
rust-version = "1.97"
name = "made-client"
version = "0.7.8"
authors = ["Tirso Garcia IbaƱez"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable operator client for MADE's public gRPC API."
readme = "README.md"
keywords = [
"made",
"grpc",
"client",
"orchestration",
]
categories = ["api-bindings"]
license = "Apache-2.0"
repository = "https://github.com/underpass-ai/made"
[lib]
name = "made_client"
path = "src/lib.rs"
[dependencies.futures]
version = "0.3"
[dependencies.made-proto]
version = "0.7.8"
[dependencies.prost]
version = "0.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tonic]
version = "0.12"
features = [
"tls",
"tls-roots",
]
[dependencies.uuid]
version = "1.10"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-stream]
version = "0.1"
features = ["net"]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
float_cmp = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
too_many_arguments = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"