doublecrypt-core 0.1.13

Encrypted filesystem core library with C ABI for cross-platform frontends
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "doublecrypt-core"
version = "0.1.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Encrypted filesystem core library with C ABI for cross-platform frontends"
readme = "README.md"
license = "MIT"

[features]
default = ["network"]
network = [
    "dep:rustls",
    "dep:rustls-pemfile",
]

[lib]
name = "doublecrypt_core"
crate-type = [
    "lib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[example]]
name = "create_image"
path = "examples/create_image.rs"

[[example]]
name = "network_mount"
path = "examples/network_mount.rs"

[dependencies.blake3]
version = "1"

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.hkdf]
version = "0.12"

[dependencies.lru]
version = "0.12"

[dependencies.postcard]
version = "1"
features = ["alloc"]

[dependencies.prost]
version = "0.13"

[dependencies.rand]
version = "0.8"

[dependencies.rustls]
version = "0.23"
features = [
    "std",
    "ring",
]
optional = true
default-features = false

[dependencies.rustls-pemfile]
version = "2"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1"

[dependencies.zeroize]
version = "1"
features = ["derive"]

[dev-dependencies]