⚘ use your pds as a git remote if you want to ⚘
4
fork

Configure Feed

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

at main 35 lines 938 B view raw
1[package] 2name = "git-remote-pds" 3version = "0.1.0" 4edition = "2024" 5 6[workspace] 7 8[[bin]] 9name = "git-remote-pds" 10path = "src/main.rs" 11 12[dependencies] 13atproto-identity = "0.14.0" 14atproto-oauth = { git = "https://tangled.org/notplants.bsky.social/lichen-atproto-oauth", default-features = false } 15axum = "0.8" 16chrono = "0.4" 17clap = { version = "4.5", features = ["derive"] } 18elliptic-curve = { version = "0.13", features = ["jwk"] } 19reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } 20serde = { version = "1.0", features = ["derive"] } 21serde_json = "1.0" 22tempfile = "3.13.0" 23tokio = { version = "1", features = ["full"] } 24tracing = { version = "0.1", features = ["log"] } 25tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } 26ulid = "1" 27 28[features] 29e2e = [] 30 31[dev-dependencies] 32anyhow = "1.0" 33base64 = "0.22" 34p256 = { version = "0.13", features = ["jwk"] } 35tempfile = "3.13.0"