self_encryption 0.35.0

Self encrypting files (convergent encryption plus obfuscation)
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 = "2018"
name = "self_encryption"
version = "0.35.0"
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Self encrypting files (convergent encryption plus obfuscation)"
homepage = "https://maidsafe.net"
documentation = "https://docs.rs/self_encryption"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/maidsafe/self_encryption"

[features]
default = []
python = [
    "dep:pyo3",
    "serde_json",
]

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

[[example]]
name = "basic_encryptor"
path = "examples/basic_encryptor.rs"
bench = false

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

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

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "lib"
path = "tests/lib.rs"

[[test]]
name = "stream_encryption"
path = "tests/stream_encryption.rs"

[[bench]]
name = "lib"
path = "benches/lib.rs"
harness = false

[dependencies.bincode]
version = "~1.3.3"

[dependencies.blake3]
version = "1"

[dependencies.brotli]
version = "~3.3.0"
features = ["std"]
default-features = false

[dependencies.bytes]
version = "1.1.0"
features = ["serde"]

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.hex]
version = "~0.4.3"

[dependencies.pyo3]
version = "0.24.2"
features = ["extension-module"]
optional = true

[dependencies.rand]
version = "~0.8.5"

[dependencies.rand_chacha]
version = "~0.3.1"

[dependencies.rayon]
version = "1.5.1"

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

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.tempfile]
version = "3.6.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.34.0"
features = ["rt"]

[dependencies.xor_name]
version = "5.0.0"

[dev-dependencies.clap]
version = "4.4"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.docopt]
version = "~0.9.0"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tokio]
version = "1.34.0"
features = [
    "rt-multi-thread",
    "macros",
]