AIRA/Cargo.toml

42 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"
[dependencies]
rand-8 = {package = "rand", version = "0.8.3"}
rand-7 = {package = "rand", version = "0.7.3"}
2021-04-26 16:29:26 +02:00
tokio = {version = "1", features = ["rt", "rt-multi-thread", "macros", "net", "io-util"]}
2021-03-20 18:03:47 +01:00
lazy_static = "1.4"
socket2 = "0.4.0"
2021-04-26 16:29:26 +02:00
rusqlite = {version = "0.25.1", features = ["bundled"]}
2021-03-20 18:03:47 +01:00
ed25519-dalek = "1" #for singing
x25519-dalek = "1.1" #for shared secret
sha2 = "0.9.3"
2021-05-03 13:23:56 +02:00
hkdf = "0.11.0"
aes-gcm = "0.9.0" #PSEC
aes-gcm-siv = "0.10.0" #Database
hmac = "0.11.0"
2021-03-20 18:03:47 +01:00
hex = "0.4.3"
strum_macros = "0.20.1" #display enums
actix-web = "3"
actix-multipart = "0.3"
2021-05-06 18:24:29 +02:00
time = "0.2.25" #needed for actix cookies
2021-03-20 18:03:47 +01:00
futures = "0.3"
tungstenite = "0.13.0" #websocket
serde = "1.0.124" #serialization
html-escape = "0.2.7"
2021-04-28 17:57:49 +02:00
sanitize-filename = "0.3"
platform-dirs = "0.3.0"
2021-04-26 16:29:26 +02:00
uuid = {version = "0.8", features = ["v4"]}
2021-03-20 18:03:47 +01:00
webbrowser = "0.5.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-03-20 18:03:47 +01:00
base64 = "0.13.0"
2021-05-03 13:23:56 +02:00
scrypt = "0.7.0"
zeroize = "1.2.0"
[build-dependencies]
html-minifier = "3.0.11"