-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (44 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (44 loc) · 1.28 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
[package]
name = "rustproto"
version = "0.3.0"
edition = "2024"
license = "MIT"
description = "Utilities for working with AT Protocol (atproto). Includes functionality for actor resolution, repository parsing, MST, and a PDS implementation."
repository = "https://github.com/threddyrex/rustproto"
exclude = [
"docs/",
"bash/",
"powershell/",
"static/",
"data/",
"/.cargo",
]
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = { version = "0.29", features = ["native-tls"] }
futures-util = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
chrono = "0.4"
sha2 = "0.10"
rusqlite = { version = "0.32", features = ["bundled"] }
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors"] }
tower-cookies = "0.11"
uuid = { version = "1.26", features = ["v4"] }
pbkdf2 = { version = "0.12", features = ["simple"] }
base64 = "0.22"
hmac = "0.12"
rand = "0.9.5"
p256 = { version = "0.13", features = ["ecdsa"] }
k256 = { version = "0.13", features = ["ecdsa"] }
bs58 = "0.5"
jsonwebtoken = "9.3"
url = "2.5"
urlencoding = "2.1"
rsa = { version = "0.9", features = ["sha2"] }
[dev-dependencies]
tempfile = "3.27"