[package]
edition = "2024"
rust-version = "1.90"
name = "cloud-sdk"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std-first multi-provider cloud SDK foundations."
homepage = "https://github.com/valkyoth/cloud-sdk"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valkyoth/cloud-sdk"
[features]
alloc = []
default = []
std = ["alloc"]
[lib]
name = "cloud_sdk"
path = "src/lib.rs"
[lints.clippy]
arithmetic_side_effects = "forbid"
cast_possible_truncation = "deny"
cast_sign_loss = "deny"
expect_used = "forbid"
indexing_slicing = "forbid"
panic = "forbid"
undocumented_unsafe_blocks = "forbid"
unwrap_used = "forbid"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "forbid"
unused_must_use = "deny"