-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.31 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
47
48
49
50
51
52
53
[package]
name = "flat-manager"
version = "0.5.1"
authors = ["Alexander Larsson <alexander.larsson@gmail.com>", "Bart Piotrowski <b@bpiotrowski.pl>"]
license = "MIT OR Apache-2.0"
default-run = "flat-manager"
edition = "2021"
[workspace]
members = ["common", "client"]
default-members = [".", "common", "client"]
[lib]
name = "flatmanager"
path = "src/lib.rs"
[[bin]]
name = "flat-manager"
path = "src/bin/flat-manager.rs"
[dependencies]
env_logger = "0.11"
actix = "0.13"
actix-files = "0.6"
actix-http = "3"
actix-multipart = "0.7"
actix-service = "2"
actix-web = "4"
askama = "0.12"
base64 = "0.22"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
diesel = { version = "2.0", features = ["postgres", "chrono", "serde_json", "r2d2"] }
diesel_migrations = { version = "2.0" }
dotenv = "0.15"
filetime = "0.2"
flat-manager-common = { path = "common" }
hex = "0.4"
jwt = { package = "jsonwebtoken", version = "10.3.0", features = ["aws_lc_rs"] }
log = "0.4"
libostree = { package = "ostree", version = "0.20.5", features = ["v2021_5"] }
r2d2 = "0.8"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.0"
thiserror = "2"
tokio = { version = "1.18", features = ["time", "macros", "rt", "rt-multi-thread", "process", "signal"] }
walkdir = "2"
futures = "0.3"
pin-project-lite = "0.2.17"
prometheus-client = "0.23"