tlock 0.0.7

Rust encryption library for practical time-lock encryption.
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 = "tlock"
version = "0.0.7"
authors = ["Thibault Meunier <crates@thibault.uk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust encryption library for practical time-lock encryption."
homepage = "https://github.com/thibmeu/tlock-rs"
readme = "README.md"
keywords = [
    "tlock",
    "cryptography",
    "encryption",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://github.com/thibmeu/tlock-rs"

[features]
default = ["rfc9380"]
rfc9380 = []

[lib]
name = "tlock"
path = "src/lib.rs"

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.ark-bls12-381]
version = "0.5.0"

[dependencies.ark-ec]
version = "0.5.0"

[dependencies.ark-ff]
version = "0.5.0"

[dependencies.ark-serialize]
version = "0.5.0"

[dependencies.itertools]
version = "0.14.0"

[dependencies.rand]
version = "0.8"
features = [
    "getrandom",
    "std",
    "std_rng",
]
default-features = false

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

[dependencies.serde_with]
version = "3.17"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.drand_core]
version = "0.0.17"

[dev-dependencies.hex]
version = "0.4"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]

[target."cfg(unix)".dev-dependencies.pprof]
version = "0.15"
features = [
    "criterion",
    "flamegraph",
]