Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1[package]
2name = "wisp-cli"
3version = "0.4.2"
4edition = "2024"
5
6[features]
7default = ["place_wisp"]
8place_wisp = []
9
10[dependencies]
11jacquard = { git = "https://tangled.org/nekomimi.pet/jacquard", features = ["loopback"] }
12jacquard-oauth = { git = "https://tangled.org/nekomimi.pet/jacquard" }
13jacquard-api = { git = "https://tangled.org/nekomimi.pet/jacquard", features = ["streaming"] }
14jacquard-common = { git = "https://tangled.org/nekomimi.pet/jacquard", features = ["websocket"] }
15jacquard-identity = { git = "https://tangled.org/nekomimi.pet/jacquard", features = ["dns"] }
16jacquard-derive = { git = "https://tangled.org/nekomimi.pet/jacquard" }
17jacquard-lexicon = { git = "https://tangled.org/nekomimi.pet/jacquard" }
18#jacquard = { path = "../../jacquard/crates/jacquard", features = ["loopback"] }
19#jacquard-oauth = { path = "../../jacquard/crates/jacquard-oauth" }
20#jacquard-api = { path = "../../jacquard/crates/jacquard-api", features = ["streaming"] }
21#jacquard-common = { path = "../../jacquard/crates/jacquard-common", features = ["websocket"] }
22#jacquard-identity = { path = "../../jacquard/crates/jacquard-identity", features = ["dns"] }
23#jacquard-derive = { path = "../../jacquard/crates/jacquard-derive" }
24#jacquard-lexicon = { path = "../../jacquard/crates/jacquard-lexicon" }
25clap = { version = "4.5.51", features = ["derive"] }
26tokio = { version = "1.48", features = ["full"] }
27miette = { version = "7.6.0", features = ["fancy"] }
28serde_json = "1.0.145"
29serde = { version = "1.0", features = ["derive"] }
30shellexpand = "3.1.1"
31#reqwest = "0.12"
32reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
33rustversion = "1.0"
34flate2 = "1.0"
35base64 = "0.22"
36walkdir = "2.5"
37mime_guess = "2.0"
38bytes = "1.10"
39futures = "0.3.31"
40multihash = "0.19.3"
41multibase = "0.9"
42sha2 = "0.10"
43axum = "0.8.7"
44tower-http = { version = "0.6.6", features = ["fs", "compression-gzip"] }
45tower = "0.5.2"
46n0-future = "0.3.1"
47chrono = "0.4"
48url = "2.5"
49regex = "1.11"
50ignore = "0.4"
51globset = "0.4"
52indicatif = "0.17"