A better Rust ATProto crate
1[workspace]
2resolver = "2"
3members = ["crates/*"]
4
5
6[workspace.package]
7edition = "2024"
8version = "0.8.0"
9authors = ["Orual <orual@nonbinary.computer>"]
10#repository = "https://github.com/rsform/jacquard"
11repository = "https://tangled.org/@nonbinary.computer/jacquard"
12keywords = ["atproto", "at", "bluesky", "api", "client"]
13categories = ["api-bindings", "web-programming::http-client"]
14readme = "README.md"
15exclude = [".direnv"]
16homepage = "https://tangled.org/@nonbinary.computer/jacquard"
17license = "MPL-2.0"
18
19description = "Simple and powerful AT Protocol client library for Rust"
20
21# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
22
23[workspace.dependencies]
24# CLI
25clap = { version = "4.5", features = ["derive"] }
26clap_complete = "4.5"
27clap_mangen = "0.2"
28
29# Serialization
30serde = { version = "1.0", features = ["derive"] }
31serde_json = "1.0"
32serde_with = "3.14"
33serde_html_form = "0.2"
34serde_ipld_dagcbor = "0.6"
35serde_repr = "0.1"
36
37# Error handling
38miette = "7.6"
39thiserror = "2.0"
40
41# trait stuff
42trait-variant = "0.1.2"
43
44
45bon = "3.8.0"
46
47# Data types
48bytes = "1.10"
49smol_str = { version = "0.3", features = ["serde"] }
50url = "2.5"
51cid = { version = "0.11.1", features = ["serde", "std"] }
52ipld-core = { version = "0.4.2", features = ["serde"] }
53multihash = "0.19"
54dashmap = "6.1"
55
56# Proc macros
57proc-macro2 = "1.0"
58quote = "1.0"
59syn = "2.0"
60heck = "0.5"
61itertools = "0.14"
62prettyplease = "0.2"
63
64# HTTP
65http = "1.3"
66reqwest = { version = "0.12", default-features = false }
67
68# Async and runtimes
69tokio = { version = "1", default-features = false }
70n0-future = "0.1"
71
72# Observability
73tracing = "0.1"
74
75# Encoding and crypto building blocks
76base64 = "0.22"
77percent-encoding = "2.3"
78urlencoding = "2.1.3"
79rand_core = "0.6"
80sha2 = "0.10"
81
82# Time
83chrono = "0.4"
84
85# Crypto curves and JOSE
86p256 = "0.13"
87jose-jwk = "0.1"
88
89# Text processing
90regex = "1.11"
91webpage = { version = "2.0", default-features = false }