-
Notifications
You must be signed in to change notification settings - Fork 43
/
Cargo.toml
62 lines (59 loc) · 1.49 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
[package]
name = "flat-manager"
version = "0.4.3"
authors = ["Alexander Larsson <[email protected]>"]
license = "MIT OR Apache-2.0"
default-run = "flat-manager"
edition = "2021"
[lib]
name = "flatmanager"
path = "src/lib.rs"
[dependencies]
env_logger = "0.11"
actix = "0.8"
actix-codec = "0.1.2"
actix-files = "0.1"
actix-http = "0.2"
actix-multipart = "0.1.5"
actix-net = "0.2"
actix-service = "0.4"
actix-web = "1.0"
actix-web-actors = "1.0"
argparse = "0.2.2"
askama = "0.12"
awc = "0.2"
base64 = "0.22"
byteorder = "1.3"
bytes = "0.4"
chrono = { version = "0.4.6", features = ["serde"] }
diesel = { version = "2.0", features = ["postgres", "chrono", "serde_json", "r2d2"] }
diesel_migrations = { version = "2.0" }
dotenv = "0.15"
elementtree = "1.2"
failure = "0.1.2"
filetime = "0.2"
flate2 = "1.0"
futures = "0.1"
futures3 = { package = "futures", version = "0.3", features = ["compat"] }
futures-fs = "0.0"
futures-locks = "0.3"
hex = "0.4"
jwt = {package = "jsonwebtoken", version = "9.3"}
libc = "0.2"
log = "0.4"
mpart-async = "0.2"
num_cpus = "1.0"
libostree = { package = "ostree", version = "0.19", features = ["v2021_5"] }
r2d2 = "0.8"
rand = "0.8"
reqwest = { version = "0.12", features = ["json", "blocking"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.0"
time = "0.1"
tokio = { version = "1.18", features = ["time", "macros", "rt", "rt-multi-thread"] }
tokio-compat = { version = "0.1", features = ["rt-full"] }
tokio-process = "0.2"
tokio-signal = "0.2"
walkdir = "2"