Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
96
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 66c7dfa283a718d2c18588919b4116e05c0ee608 44 lines 1.5 kB view raw
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" } 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" 33multihash = "0.19.3" 34multibase = "0.9" 35sha2 = "0.10" 36axum = "0.8.7" 37tower-http = { version = "0.6.6", features = ["fs", "compression-gzip"] } 38tower = "0.5.2" 39n0-future = "0.3.1" 40chrono = "0.4" 41url = "2.5" 42regex = "1.11" 43ignore = "0.4" 44globset = "0.4"