[package]
edition = "2021"
name = "gcemeta"
version = "0.3.0"
authors = ["mechiru <u9053u6d41@gmail.com>"]
build = false
include = [
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"src/**/*",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides access to Google Compute Engine metadata service."
documentation = "https://docs.rs/gcemeta"
readme = "README.md"
keywords = [
"google",
"cloud",
"compute",
"engine",
"metadata",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mechiru/gcemeta"
[lib]
name = "gcemeta"
path = "src/lib.rs"
[dependencies.bytes]
version = "1.7"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1.4"
features = [
"client",
"http1",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"http1",
"client-legacy",
]
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.39"
features = [
"macros",
"time",
"sync",
"rt",
]
[dependencies.tracing]
version = "0.1"
features = ["std"]
default-features = false
[dev-dependencies.tokio]
version = "1.39"
features = ["rt-multi-thread"]
[dev-dependencies.tracing-subscriber]
version = "0.3"
[features]
default = ["parking_lot"]
parking_lot = ["tokio/parking_lot"]