-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1.14 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
[package]
name = "cherry-server"
version = "0.1.0"
edition = "2021"
description = "A media server based on the Blossom protocol"
authors = ["0xtr <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/0xtrr/cherry-server"
repository = "https://github.com/0xtrr/cherry-server"
license = "MIT"
keywords = ["blossom", "server"]
[dependencies]
axum = { version = "0.7.5", features = ["multipart"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
tokio = { version = "1.41.1", features = ["full", "test-util"] }
tower-http = { version = "0.6.1", features = ["cors"] }
chrono = "0.4.38"
sha2 = "0.10.8"
hex = "0.4.3"
base64 = "0.22.1"
async-trait = "0.1.83"
sqlx = { version = "0.8.2", features = ["runtime-tokio-rustls", "sqlite", "macros"] }
toml = "0.8.19"
reqwest = { version = "0.12.9", features = ["json"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
clap = { version = "4.5.21", features = ["derive"] }
nostr-sdk = "0.36.0"
http-body-util = "0.1.2"
tempfile = "3.14.0"
mime2ext = "0.1.53"
[dev-dependencies]
tower = { version = "0.5.1", features = ["util"] }