Monorepo for Wisp.place. A static site hosting service built on top of the AT Protocol.
at main 1.2 kB view raw
1[package] 2name = "wisp-cli" 3version = "0.1.0" 4edition = "2024" 5 6[features] 7default = ["place_wisp"] 8place_wisp = [] 9 10[dependencies] 11jacquard = { git = "https://tangled.org/@nonbinary.computer/jacquard", features = ["loopback"] } 12jacquard-oauth = { git = "https://tangled.org/@nonbinary.computer/jacquard" } 13jacquard-api = { git = "https://tangled.org/@nonbinary.computer/jacquard" } 14jacquard-common = { git = "https://tangled.org/@nonbinary.computer/jacquard" } 15jacquard-identity = { git = "https://tangled.org/@nonbinary.computer/jacquard", features = ["dns"] } 16jacquard-derive = { git = "https://tangled.org/@nonbinary.computer/jacquard" } 17jacquard-lexicon = { git = "https://tangled.org/@nonbinary.computer/jacquard" } 18clap = { version = "4.5.51", features = ["derive"] } 19tokio = { version = "1.48", features = ["full"] } 20miette = { version = "7.6.0", features = ["fancy"] } 21serde_json = "1.0.145" 22serde = { version = "1.0", features = ["derive"] } 23shellexpand = "3.1.1" 24#reqwest = "0.12" 25reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] } 26rustversion = "1.0" 27flate2 = "1.0" 28base64 = "0.22" 29walkdir = "2.5" 30mime_guess = "2.0" 31bytes = "1.10" 32futures = "0.3.31"