[package]
edition = "2021"
name = "hal-sdk"
version = "0.2.0"
authors = ["Benoît Prieur"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust SDK for the HAL open-archive API (hal.science) — companion crate of chapter 16 of the book Rust (ENI, 2022)."
homepage = "https://thepriben.github.io/hal-sdk/"
documentation = "https://docs.rs/hal-sdk"
readme = "README.md"
keywords = [
"hal",
"archives",
"sdk",
"editions-eni",
"2022",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thepriben/hal-sdk"
[lib]
name = "hal_sdk"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false