mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
28 lines
659 B
TOML
28 lines
659 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]
|
|
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 = []
|