-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
92 lines (80 loc) · 2.31 KB
/
Cargo.toml
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
[workspace]
members = [
"atrium-api",
"atrium-crypto",
"atrium-xrpc",
"atrium-xrpc-client",
"atrium-oauth/identity",
"atrium-oauth/oauth-client",
"bsky-cli",
"bsky-sdk",
]
# Examples show how to use the latest published crates, not the workspace state.
exclude = [
"examples/concurrent",
"examples/firehose",
]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.75"
repository = "https://github.com/sugyan/atrium"
license = "MIT"
keywords = ["atproto", "bluesky"]
[workspace.dependencies]
# Intra-workspace dependencies
atrium-api = { version = "0.24.7", path = "atrium-api", default-features = false }
atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" }
atrium-xrpc = { version = "0.11.6", path = "atrium-xrpc" }
atrium-xrpc-client = { version = "0.5.9", path = "atrium-xrpc-client" }
bsky-sdk = { version = "0.1.12", path = "bsky-sdk" }
# DAG-CBOR codec
ipld-core = { version = "0.4.1", default-features = false, features = ["std"] }
serde_ipld_dagcbor = { version = "0.6.0", default-features = false, features = ["std"] }
# Parsing and validation
base64 = "0.22.1"
chrono = "0.4"
hex = "0.4.3"
langtag = "0.3"
multibase = "0.9.1"
regex = "1"
serde = "1.0.202"
serde_bytes = "0.11.9"
serde_html_form = "0.2.6"
serde_json = "1.0.125"
# Cryptography
ecdsa = "0.16.9"
elliptic-curve = "0.13.6"
jose-jwa = "0.1.2"
jose-jwk = { version = "0.1.2", default-features = false }
k256 = { version = "0.13.3", default-features = false }
p256 = { version = "0.13.2", default-features = false }
rand = "0.8.5"
sha2 = "0.10.8"
# Networking
dashmap = "6.1.0"
futures = { version = "0.3.30", default-features = false, features = ["alloc"] }
hickory-proto = { version = "0.24.1", default-features = false }
hickory-resolver = "0.24.1"
http = "1.1.0"
lru = "0.12.4"
moka = "0.12.8"
tokio = { version = "1.39", default-features = false }
# HTTP client integrations
isahc = "1.7.2"
reqwest = { version = "0.12", default-features = false, features = ["gzip"] }
# Errors
anyhow = "1.0.86"
thiserror = "1.0"
# CLI
clap = { version = "~4.4.18", features = ["derive"] }
dirs = "5.0.1"
# Testing
gloo-timers = { version = "0.3.0", features = ["futures"] }
mockito = "1.4"
# WebAssembly
wasm-bindgen-test = "0.3.41"
web-time = "1.1.0"
bumpalo = "~3.14.0"
# Code generation
trait-variant = "0.1.2"