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