2022-05-03 11:20:24 +00:00
|
|
|
[package]
|
2022-06-27 13:02:21 +00:00
|
|
|
name = "flexible-transcript"
|
2023-08-08 22:18:59 +00:00
|
|
|
version = "0.3.2"
|
2022-06-27 13:02:21 +00:00
|
|
|
description = "A simple transcript trait definition, along with viable options"
|
2022-05-03 11:20:24 +00:00
|
|
|
license = "MIT"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/transcript"
|
2022-05-03 11:20:24 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2022-06-19 10:35:15 +00:00
|
|
|
keywords = ["transcript"]
|
2022-05-03 11:20:24 +00:00
|
|
|
edition = "2021"
|
2024-06-13 19:57:08 +00:00
|
|
|
rust-version = "1.79"
|
2022-05-03 11:20:24 +00:00
|
|
|
|
2022-09-28 12:44:49 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2022-09-29 08:47:55 +00:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2022-09-28 12:44:49 +00:00
|
|
|
|
2023-12-17 01:54:24 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-05-03 11:20:24 +00:00
|
|
|
[dependencies]
|
2023-03-28 08:43:10 +00:00
|
|
|
rustversion = "1"
|
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
subtle = { version = "^2.4", default-features = false }
|
|
|
|
zeroize = { version = "^1.5", default-features = false }
|
2023-03-28 08:43:10 +00:00
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
digest = { version = "0.10", default-features = false, features = ["core-api"] }
|
2022-05-03 11:20:24 +00:00
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
blake2 = { version = "0.10", default-features = false, optional = true }
|
|
|
|
merlin = { version = "3", default-features = false, optional = true }
|
2022-05-03 11:20:24 +00:00
|
|
|
|
2023-03-07 07:25:10 +00:00
|
|
|
[dev-dependencies]
|
2023-04-22 08:38:47 +00:00
|
|
|
sha2 = { version = "0.10", default-features = false }
|
|
|
|
blake2 = { version = "0.10", default-features = false }
|
2023-03-07 07:25:10 +00:00
|
|
|
|
2022-05-03 11:20:24 +00:00
|
|
|
[features]
|
2023-10-31 11:41:23 +00:00
|
|
|
std = ["subtle/std", "zeroize/std", "digest/std", "blake2?/std", "merlin?/std"]
|
2022-06-24 22:58:24 +00:00
|
|
|
recommended = ["blake2"]
|
2022-05-03 11:20:24 +00:00
|
|
|
merlin = ["dep:merlin"]
|
2023-03-07 07:25:10 +00:00
|
|
|
tests = []
|
2023-10-31 11:41:23 +00:00
|
|
|
default = ["std"]
|