hcloud 0.26.0

Unofficial Rust crate for accessing the Hetzner Cloud API
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "hcloud"
version = "0.26.0"
authors = ["Henning Holm <git@henningholm.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial Rust crate for accessing the Hetzner Cloud API"
readme = "README.md"
keywords = [
    "hcloud",
    "hetzner",
    "hetzner-cloud",
]
categories = [
    "api-bindings",
    "web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/HenningHolmDE/hcloud-rust"

[features]
default = ["default-tls"]
default-tls = ["reqwest/default-tls"]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]
rustls-tls = ["reqwest/rustls-tls"]

[lib]
name = "hcloud"
path = "src/lib.rs"

[[example]]
name = "create_delete_servers"
path = "examples/create_delete_servers.rs"

[[example]]
name = "create_delete_storage_boxes"
path = "examples/create_delete_storage_boxes.rs"

[[example]]
name = "find_cheapest_server_type"
path = "examples/find_cheapest_server_type.rs"

[[example]]
name = "list_images"
path = "examples/list_images.rs"

[[example]]
name = "list_isos"
path = "examples/list_isos.rs"

[[example]]
name = "list_servers"
path = "examples/list_servers.rs"

[[example]]
name = "list_storage_box_types"
path = "examples/list_storage_box_types.rs"

[[example]]
name = "list_zones"
path = "examples/list_zones.rs"

[dependencies.reqwest]
version = "^0.12"
features = [
    "charset",
    "http2",
    "json",
    "macos-system-configuration",
    "multipart",
]
default-features = false

[dependencies.serde]
version = "^1.0"
features = ["derive"]

[dependencies.serde_json]
version = "^1.0"

[dependencies.serde_with]
version = "^3.8"
features = [
    "base64",
    "std",
    "macros",
]
default-features = false

[dependencies.url]
version = "^2.5"

[dependencies.uuid]
version = "^1.8"
features = [
    "serde",
    "v4",
]

[dev-dependencies.rand]
version = "^0.9"

[dev-dependencies.tokio]
version = "^1.0"
features = [
    "macros",
    "rt-multi-thread",
]