mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-10 21:04:40 +00:00
47be373eb0
This is a 'better-than-nothing' attempt to invalidate its state. Also replaces black_box features with usage of the rustversion crate.
33 lines
712 B
TOML
33 lines
712 B
TOML
[package]
|
|
name = "flexible-transcript"
|
|
version = "0.3.1"
|
|
description = "A simple transcript trait definition, along with viable options"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/transcript"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["transcript"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
rustversion = "1"
|
|
|
|
subtle = "^2.4"
|
|
zeroize = "^1.5"
|
|
|
|
digest = "0.10"
|
|
|
|
blake2 = { version = "0.10", optional = true }
|
|
merlin = { version = "3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
sha2 = "0.10"
|
|
blake2 = "0.10"
|
|
|
|
[features]
|
|
recommended = ["blake2"]
|
|
merlin = ["dep:merlin"]
|
|
tests = []
|