48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "aira"
|
|
version = "0.0.3"
|
|
authors = ["Hardcore Sushi <hardcore.sushi@disroot.org>"]
|
|
edition = "2018"
|
|
exclude = ["src/frontend"]
|
|
|
|
[dependencies]
|
|
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.4", features = ["split"] }
|
|
lazy_static = "1.4"
|
|
socket2 = "0.4"
|
|
rusqlite = { version = "0.25.1", features = ["bundled"] }
|
|
ed25519-dalek = "1" #for singatures
|
|
sha2 = "0.9"
|
|
aes-gcm = "0.9"
|
|
aes-gcm-siv = "0.10" #database encryption
|
|
hkdf = "0.11"
|
|
hex = "0.4"
|
|
actix-web = "3"
|
|
actix-multipart = "0.3"
|
|
time = "0.2" #needed for actix cookies
|
|
futures = "0.3"
|
|
tungstenite = "0.13" #websocket
|
|
serde = "1.0" #serialization
|
|
html-escape = "0.2"
|
|
sanitize-filename = "0.3"
|
|
platform-dirs = "0.3"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
webbrowser = "0.5"
|
|
libmdns = "0.6" #mDNS advertiser
|
|
multicast_dns = "0.5" #mDNS browser
|
|
if-addrs = "0.6"
|
|
base64 = "0.13"
|
|
scrypt = "0.7"
|
|
zeroize = "1.2"
|
|
image = "0.23"
|
|
yaml-rust = "0.4" #only in debug mode
|
|
|
|
[build-dependencies]
|
|
html-minifier = "3.0"
|
|
yaml-rust = "0.4"
|
|
linked-hash-map = "0.5"
|
|
|
|
[profile.dev.package.scrypt]
|
|
opt-level = 3 |