AIRA-android/app/src/main/native/Cargo.toml

30 lines
686 B
TOML
Raw Normal View History

2021-01-26 19:45:18 +01:00
[package]
name = "aira"
2021-09-02 20:45:53 +02:00
version = "0.1.0"
2021-01-26 19:45:18 +01:00
authors = ["Hardcore Sushi <hardcore.sushi@disroot.org>"]
edition = "2018"
[target.'cfg(target_os="android")'.dependencies]
jni = { version = "0.19", default-features = false }
[lib]
crate-type = ["dylib"]
[dependencies]
2021-08-14 14:50:32 +02:00
rand = "0.8"
rand-7 = {package = "rand", version = "0.7"}
lazy_static = "1.4"
2022-05-14 20:34:19 +02:00
rusqlite = { version = "0.27", features = ["bundled"] }
2021-01-26 19:45:18 +01:00
ed25519-dalek = "1" #for singing
2022-05-14 20:34:19 +02:00
sha2 = "0.10"
hkdf = "0.12"
2021-08-14 14:50:32 +02:00
aes-gcm = "0.9" #PSEC
aes-gcm-siv = "0.10" #Database
2022-05-14 20:34:19 +02:00
hmac = "0.12"
2021-08-14 14:50:32 +02:00
hex = "0.4"
2022-05-14 20:34:19 +02:00
strum_macros = "0.24" #display enums
uuid = { version = "1.0", features = ["v4"] }
scrypt = "0.10"
zeroize = "1.3"
2021-08-14 14:50:32 +02:00
log = "0.4"
2021-09-02 20:45:53 +02:00
android_log = "0.1"