-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (82 loc) · 3.25 KB
/
Cargo.toml
File metadata and controls
101 lines (82 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[workspace]
resolver = "2"
members = ["crates/jacquard", "crates/jacquard-common", "crates/jacquard-api", "crates/jacquard-lexgen", "crates/jacquard-lexicon", "crates/jacquard-derive", "crates/jacquard-repo", "crates/jacquard-codegen-tests", "crates/mini-moka-wasm"]
[workspace.package]
edition = "2024"
version = "0.12.0-beta.2"
authors = ["Orual <orual@nonbinary.computer>"]
#repository = "https://github.com/rsform/jacquard"
repository = "https://tangled.org/nonbinary.computer/jacquard"
keywords = ["atproto", "at", "bluesky", "api", "client"]
categories = ["api-bindings", "web-programming::http-client"]
readme = "README.md"
exclude = [".direnv"]
homepage = "https://tangled.org/nonbinary.computer/jacquard"
license = "MPL-2.0"
description = "Simple and powerful AT Protocol client library for Rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
# CLI
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
clap_mangen = "0.2"
# Serialization
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde_with = { version = "3.14", default-features = false, features = ["alloc", "macros"] }
serde_html_form = { version = "0.3", default-features = false }
serde_ipld_dagcbor = { version = "0.6", default-features = false }
serde_repr = { version = "0.1" }
serde_bytes = { version = "0.11", default-features = false }
facet = "0.6"
facet-json = "0.6"
cfg-if = "1.0"
# Error handling
miette = "7.6"
thiserror = { version = "2.0", default-features = false }
# trait stuff
trait-variant = "0.1.2"
rustversion = "1.0"
unicode-segmentation = "1.12"
bon = "3.8.0"
# Data types
bytes = { version = "1.11", default-features = false }
smol_str = { version = "0.3", features = ["serde"] }
fluent-uri = { version = "0.4.1", default-features = false, features = ["serde", "alloc", "impl-error"] }
cid = { version = "0.11.1", default-features = false, features = ["serde", "alloc"] }
ipld-core = { version = "0.4.2", default-features = false, features = ["serde"] }
multihash = { version = "0.19", default-features = false, features = ["alloc"] }
dashmap = "6.1"
mini-moka = "0.10"
indexmap = { version = "*", default-features = false, features = ["alloc"] }
smallvec = { version = "1", features = ["const_generics"] }
# Proc macros
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
heck = "0.5"
itertools = "0.14"
prettyplease = "0.2"
# HTTP
http = { version = "1.4", default-features = false }
reqwest = { version = "0.12", default-features = false }
# Async and runtimes
tokio = { version = "1", default-features = false }
n0-future = "0.1"
# Observability
tracing = "0.1"
# Encoding and crypto building blocks
base64 = { version = "0.22", default-features = false, features = ["alloc"] }
rand_core = { version = "0.6.4", default-features = false, features = [
"alloc",
] }
sha2 = "0.10"
# Time
chrono = { version = "0.4", default-features = false, features = ["serde"] }
# Crypto curves and JOSE
p256 = "0.13"
jose-jwk = "0.1"
# Text processing
regex = { version = "1.12", default-features = false }
webpage = { version = "2.0", default-features = false }
phf = { version = "0.11", features = ["macros"] }