19 lines
339 B
TOML
19 lines
339 B
TOML
[package]
|
|
name = "rabby-runtime"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
rabby-core = { path = "../rabby-core" }
|
|
aes-gcm = "0.10"
|
|
argon2 = "0.5"
|
|
base64 = "0.22"
|
|
rand = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|