AIRA/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2021-03-20 18:03:47 +01:00
[package]
name = "aira"
2021-05-10 18:37:57 +02:00
version = "0.0.2"
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"] }
async-psec = { version = "0.2", 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"
rusqlite = { version = "0.25.1", features = ["bundled"] }
2021-03-20 18:03:47 +01:00
ed25519-dalek = "1" #for singing
2021-05-17 14:37:04 +02:00
sha2 = "0.9"
aes-gcm = "0.9"
aes-gcm-siv = "0.10" #Database
hkdf = "0.11"
hex = "0.4"
2021-03-20 18:03:47 +01:00
actix-web = "3"
actix-multipart = "0.3"
2021-05-17 14:37:04 +02:00
time = "0.2" #needed for actix cookies
2021-03-20 18:03:47 +01:00
futures = "0.3"
2021-05-17 14:37:04 +02:00
tungstenite = "0.13" #websocket
serde = "1.0" #serialization
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"
uuid = { version = "0.8", features = ["v4"] }
webbrowser = "0.5"
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
if-addrs = "0.6"
2021-05-17 14:37:04 +02:00
base64 = "0.13"
scrypt = "0.7"
zeroize = "1.2"
2021-05-25 21:59:16 +02:00
image = "0.23"
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"
linked-hash-map = "0.5"