22 lines
381 B
TOML
22 lines
381 B
TOML
|
[package]
|
||
|
name = "shorekeeper-protokey"
|
||
|
edition = "2021"
|
||
|
version.workspace = true
|
||
|
|
||
|
[dependencies]
|
||
|
# Cryptography
|
||
|
aes.workspace = true
|
||
|
cipher = { workspace = true, features = ["block-padding", "alloc"]}
|
||
|
rsa.workspace = true
|
||
|
rand.workspace = true
|
||
|
|
||
|
# Serialization
|
||
|
serde.workspace = true
|
||
|
|
||
|
# Util
|
||
|
rbase64.workspace = true
|
||
|
thiserror.workspace = true
|
||
|
|
||
|
# Tracing
|
||
|
tracing.workspace = true
|