A better Rust ATProto crate
1[package] 2name = "jacquard-api" 3description = "Generated AT Protocol API bindings for Jacquard" 4edition.workspace = true 5version.workspace = true 6authors.workspace = true 7repository.workspace = true 8keywords.workspace = true 9categories.workspace = true 10readme.workspace = true 11exclude.workspace = true 12license.workspace = true 13 14[package.metadata.docs.rs] 15features = [ "com_atproto", "app_bsky", "chat_bsky", "tools_ozone" ] 16 17[features] 18default = [ "com_atproto"] 19app_bsky = [] 20chat_bsky = [] 21com_atproto = [] 22tools_ozone = [] 23 24[dependencies] 25bon.workspace = true 26bytes = { workspace = true, features = ["serde"] } 27jacquard-common = { version = "0.3.0", path = "../jacquard-common" } 28jacquard-derive = { version = "0.3.0", path = "../jacquard-derive" } 29miette.workspace = true 30serde.workspace = true 31thiserror.workspace = true