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 = { version = "2.5", features = ["serde"] }
51cid = { version = "0.11.1", features = ["serde", "std"] }
52ipld-core = { version = "0.4.2", features = ["serde"] }
53multihash = "0.19"
54dashmap = "6.1"
55moka = "0.12"
56mini-moka = "0.10"
57
58# Proc macros
59proc-macro2 = "1.0"
60quote = "1.0"
61syn = "2.0"
62heck = "0.5"
63itertools = "0.14"
64prettyplease = "0.2"
65
66# HTTP
67http = "1.3"
68reqwest = { version = "0.12", default-features = false }
69
70# Async and runtimes
71tokio = { version = "1", default-features = false }
72n0-future = "0.1"
73
74# Observability
75tracing = "0.1"
76
77# Encoding and crypto building blocks
78base64 = "0.22"
79percent-encoding = "2.3"
80urlencoding = "2.1.3"
81rand_core = "0.6"
82sha2 = "0.10"
83
84# Time
85chrono = "0.4"
86
87# Crypto curves and JOSE
88p256 = "0.13"
89jose-jwk = "0.1"
90
91# Text processing
92regex = "1.11"
93webpage = { version = "2.0", default-features = false }