forked from helsinki-systems/harmonia
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
39 lines (35 loc) · 1.08 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
[package]
name = "harmonia"
version = "2.0.1"
authors = [
"Jörg Thalheim <[email protected]>",
"Simon Hauser <[email protected]>"
]
edition = "2021"
license = "MIT"
homepage = "https://github.com/nix-community/harmonia"
repository = "https://github.com/nix-community/harmonia.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = { version = "4", default-features = false, features = ["macros", "compress-zstd", "cookies", "openssl"] }
openssl = { version = "0.10" }
actix-files = "0.6.6"
log = "0.4"
env_logger = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
mime = "0.3"
base64 = "0.22"
tokio = { version = "1", features = ["sync", "fs", "io-util", "rt", "macros"] }
tokio-stream = { version = "0.1" }
http-range = "0.1"
askama_escape = "0.10.3"
percent-encoding = "2.3.1"
anyhow = "1.0.95"
tempfile = "3.14.0"
url = "2.5.4"
async-compression = { version = "0.4.18", features = ["tokio", "bzip2"] }
tokio-util = "0.7.13"
[build-dependencies]
pkg-config = "0.3"