Command-line tool for managing your AT Protocol bookmarks. Works with kipclip.com and any app that uses the same record format. kipclip.com
atproto rust kipclip bookmarks tags toread atprotocol
1
fork

Configure Feed

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

at main 29 lines 725 B view raw
1[package] 2name = "kipclip" 3version = "0.1.1" 4edition = "2024" 5description = "CLI for kipclip.com – AT Protocol bookmark manager" 6license = "MIT" 7repository = "https://github.com/tijs/kipclip-cli" 8 9[[bin]] 10name = "kip" 11path = "src/main.rs" 12 13[dependencies] 14jacquard = "0.9" 15clap = { version = "4", features = ["derive"] } 16tokio = { version = "1", features = ["full"] } 17serde = { version = "1", features = ["derive"] } 18serde_json = "1" 19reqwest = { version = "0.12", features = ["json"] } 20open = "5" 21owo-colors = "4" 22chrono = { version = "0.4", features = ["serde"] } 23miette = { version = "7", features = ["fancy"] } 24dirs = "6" 25unicode-width = "0.2" 26terminal_size = "0.4" 27jacquard-identity = "0.9" 28url = "2" 29regex-lite = "0.1"