AIRA/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

2021-03-20 18:03:47 +01:00
[package]
name = "aira"
2021-09-02 20:39:22 +02:00
version = "0.1.1"
2021-03-20 18:03:47 +01:00
authors = ["Hardcore Sushi <hardcore.sushi@disroot.org>"]
edition = "2018"
exclude = ["src/frontend"]
2021-03-20 18:03:47 +01:00
[dependencies]
2021-05-17 14:37:04 +02:00
rand = "0.8"
rand-7 = { package = "rand", version = "0.7.3" }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "net", "io-util"] }
2021-07-25 16:02:17 +02:00
async-psec = { version = "0.4", features = ["split"] }
2021-03-20 18:03:47 +01:00
lazy_static = "1.4"
2021-05-17 14:37:04 +02:00
socket2 = "0.4"
2021-09-02 20:39:22 +02:00
rusqlite = { version = "0.27", features = ["bundled"] }
ed25519-dalek = "1" #for singatures
2021-09-02 20:39:22 +02:00
sha2 = "0.10"
2021-05-17 14:37:04 +02:00
aes-gcm = "0.9"
aes-gcm-siv = "0.10" #database encryption
2021-09-02 20:39:22 +02:00
hkdf = "0.12"
2021-05-17 14:37:04 +02:00
hex = "0.4"
2021-09-02 20:39:22 +02:00
actix-web = "4"
env_logger = "0.9"
actix-multipart = "0.4"
time = "0.3" #needed for actix cookies
2021-03-20 18:03:47 +01:00
futures = "0.3"
2021-09-02 20:39:22 +02:00
tungstenite = "0.17" #websocket
serde = { version = "1.0", features = ["derive"] } #serialization
2021-05-17 14:37:04 +02:00
html-escape = "0.2"
2021-04-28 17:57:49 +02:00
sanitize-filename = "0.3"
2021-05-17 14:37:04 +02:00
platform-dirs = "0.3"
2021-09-02 20:39:22 +02:00
uuid = { version = "1.0", features = ["v4"] }
webbrowser = "0.7"
2021-04-26 16:29:26 +02:00
libmdns = "0.6" #mDNS advertiser
2021-03-20 18:03:47 +01:00
multicast_dns = "0.5" #mDNS browser
2021-09-02 20:39:22 +02:00
if-addrs = "0.7"
2021-05-17 14:37:04 +02:00
base64 = "0.13"
2021-09-02 20:39:22 +02:00
scrypt = "0.10"
zeroize = "1.5"
image = "0.24"
yaml-rust = "0.4" #only in debug mode
[build-dependencies]
2021-05-17 14:37:04 +02:00
html-minifier = "3.0"
2021-05-25 21:59:16 +02:00
yaml-rust = "0.4"
2021-05-30 18:43:47 +02:00
linked-hash-map = "0.5"
[profile.dev.package.scrypt]
2021-07-25 16:02:17 +02:00
opt-level = 3