-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 1022 Bytes
/
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
[package]
name = "storagereloaded"
version = "1.0.0"
authors = ["Sematre <[email protected]>"]
rust-version = "1.58.1"
edition = "2021"
resolver = "2"
description = "Simple self-hosted/all-in-one storage management system"
homepage = "https://github.com/StorageReloaded/StoRe"
repository = "https://github.com/StorageReloaded/Server"
license = "GPL-3.0"
keywords = ["server", "api", "storage", "management"]
[dependencies]
actix-web = { version = "4", features = ["rustls"] }
actix-cors = "0.6"
actix-files = "0.6"
futures = "0.3"
futures-util = "0.3"
rustls = "0.20"
rustls-pemfile = "1.0"
sqlx = { version = "0.6", features = ["runtime-actix-rustls", "tls", "chrono", "mysql"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sysinfo = "0.25"
config = "0.13"
rand = "0.8"
log = "0.4"
env_logger = "0.9"
[package.metadata.deb]
maintainer-scripts = "debian/"
systemd-units = { enable = false }