Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:45:33.397Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

Cargo.toml

47 lines · 1.0 KB · toml
1[package]
2name = "http_client"
3version = "0.1.0"
4edition.workspace = true
5publish = false
6license = "Apache-2.0"
7description = "A HTTP client library for Zed and GPUI"
8
9[lints]
10workspace = true
11
12[features]
13test-support = []
14github-download = [
15    "dep:async-fs",
16    "dep:async-tar",
17    "dep:sha2",
18    "dep:tempfile",
19    "dep:util",
20]
21
22[lib]
23path = "src/http_client.rs"
24doctest = true
25
26[dependencies]
27anyhow.workspace = true
28async-compression.workspace = true
29bytes.workspace = true
30derive_more.workspace = true
31futures.workspace = true
32http-body.workspace = true
33http.workspace = true
34log.workspace = true
35parking_lot.workspace = true
36serde.workspace = true
37serde_json.workspace = true
38serde_urlencoded.workspace = true
39url.workspace = true
40
41[target.'cfg(not(target_family = "wasm"))'.dependencies]
42util = { workspace = true, optional = true }
43async-fs = { workspace = true, optional = true }
44async-tar = { workspace = true, optional = true }
45sha2 = { workspace = true, optional = true }
46tempfile = { workspace = true, optional = true }
47
Served at tenant.openagents/omega Member data and write actions are omitted.