-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
47 lines (46 loc) · 1.39 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
[package]
name = "pubky-homeserver"
version = "0.1.1"
edition = "2021"
authors = ["Nuh <[email protected]>"]
description = "Pubky core's homeserver."
license = "MIT"
homepage = "https://github.com/pubky/pubky-core"
repository = "https://github.com/pubky/pubky-core"
keywords = ["pkarr", "sovereign", "web", "pkarr", "datastore"]
categories = [
"network-programming",
"cryptography",
"web-programming",
"authentication",
]
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["macros"] }
axum-extra = { version = "0.10.0", features = [
"typed-header",
"async-read-body",
] }
base32 = "0.5.1"
bytes = "^1.10.0"
clap = { version = "4.5.29", features = ["derive"] }
dirs-next = "2.0.0"
flume = "0.11.1"
futures-util = "0.3.31"
heed = "0.21.0"
hex = "0.4.3"
httpdate = "1.0.3"
postcard = { version = "1.1.1", features = ["alloc"] }
pkarr = { version = "3.3.3", features = ["dht", "lmdb-cache", "tls"] }
pubky-common = { version = "0.3.1", path = "../pubky-common" }
serde = { version = "1.0.217", features = ["derive"] }
tokio = { version = "1.43.0", features = ["full"] }
toml = "0.8.20"
tower-cookies = "0.11.0"
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = "2.5.4"
axum-server = { version = "0.7.1", features = ["tls-rustls-no-provider"] }
tower = "0.5.2"
page_size = "0.6.0"