[package]
edition = "2021"
name = "el-cloud"
version = "0.3.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Frontier LLM cloud backend over reqwest — OpenAI, Anthropic, Gemini, Ollama (ADR-010)."
readme = false
license = "Apache-2.0"
[lib]
name = "el_cloud"
path = "src/lib.rs"
[dependencies.el-core]
version = "0.3.5"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
"rustls-tls",
]
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.serde]
version = "1"
features = ["derive"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.serde_json]
version = "1"
[lints.rust]
unsafe_code = "forbid"