serai/crypto/transcript/Cargo.toml

29 lines
659 B
TOML
Raw Normal View History

[package]
name = "flexible-transcript"
2023-03-21 00:28:41 +00:00
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>"]
2022-06-19 10:35:15 +00:00
keywords = ["transcript"]
edition = "2021"
[package.metadata.docs.rs]
all-features = true
2022-09-29 08:47:55 +00:00
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
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 = []