[package]
edition = "2021"
name = "dove-core"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The shared library behind dove — client-side-encrypted, expiring file sharing from a cloud you own."
homepage = "https://dove.sh"
readme = "README.md"
keywords = [
"file-sharing",
"encryption",
"s3",
"ephemeral",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/boomctl/dove-core"
[lib]
name = "dove_core"
path = "src/lib.rs"
[[test]]
name = "browser_crypto_compat"
path = "tests/browser_crypto_compat.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "factory"
path = "tests/factory.rs"
[[test]]
name = "get_ordering"
path = "tests/get_ordering.rs"
[[test]]
name = "no_io"
path = "tests/no_io.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.getrandom]
version = "0.2"
[dependencies.hmac]
version = "0.12"
[dependencies.pbkdf2]
version = "0.12"
[dependencies.rusty-s3]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "2"
[dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false