26 lines
610 B
TOML
26 lines
610 B
TOML
[package]
|
|
name = "mailrage"
|
|
version = "0.0.1"
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
edition = "2021"
|
|
license = "AGPL-3.0"
|
|
description = "Encrypted mail storage over Garage"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.28"
|
|
base64 = "0.13"
|
|
hex = "0.4"
|
|
im = "15"
|
|
itertools = "0.10"
|
|
rusoto_core = "0.48.0"
|
|
rusoto_credential = "0.48.0"
|
|
rusoto_s3 = "0.48"
|
|
rusoto_signature = "0.48.0"
|
|
serde = "1.0.137"
|
|
rand = "0.8.5"
|
|
rmp-serde = "0.15"
|
|
sodiumoxide = "0.2"
|
|
tokio = "1.17.0"
|
|
zstd = { version = "0.9", default-features = false }
|
|
|
|
k2v-client = { git = "https://git.deuxfleurs.fr/trinity-1686a/garage.git", branch = "k2v-client" }
|