A better Rust ATProto crate
1[package] 2name = "jacquard-api" 3edition.workspace = true 4version.workspace = true 5authors.workspace = true 6repository.workspace = true 7keywords.workspace = true 8categories.workspace = true 9readme.workspace = true 10documentation.workspace = true 11exclude.workspace = true 12description.workspace = true 13 14[features] 15default = ["app_bsky", "com_atproto", "tools_ozone", "chat_bsky"] 16app_bsky = [] 17chat_bsky = [] 18com_atproto = [] 19tools_ozone = [] 20 21[dependencies] 22bytes = { version = "1.10.1", features = ["serde"] } 23jacquard-common = { version = "0.1.0", path = "../jacquard-common" } 24jacquard-derive = { version = "0.1.0", path = "../jacquard-derive" } 25miette = "7.6.0" 26serde = { version = "1.0.228", features = ["derive"] } 27thiserror = "2.0.17"