mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "flexible-transcript"
|
|
version = "0.3.2"
|
|
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"
|
|
rust-version = "1.79"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
rustversion = "1"
|
|
|
|
subtle = { version = "^2.4", default-features = false }
|
|
zeroize = { version = "^1.5", default-features = false }
|
|
|
|
digest = { version = "0.10", default-features = false, features = ["core-api"] }
|
|
|
|
blake2 = { version = "0.10", default-features = false, optional = true }
|
|
merlin = { version = "3", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
sha2 = { version = "0.10", default-features = false }
|
|
blake2 = { version = "0.10", default-features = false }
|
|
|
|
[features]
|
|
std = ["subtle/std", "zeroize/std", "digest/std", "blake2?/std", "merlin?/std"]
|
|
recommended = ["blake2"]
|
|
merlin = ["dep:merlin"]
|
|
tests = []
|
|
default = ["std"]
|