Files
tlsn-utils/rand06-compat/Cargo.toml
2025-03-17 13:10:40 -07:00

22 lines
656 B
TOML

[package]
name = "rand06-compat"
version = "0.1.0"
edition = "2024"
authors = ["TLSNotary Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tlsnotary/tlsn-utils"
description = "Compatibility wrapper between `rand_core` 0.6 and 0.9"
keywords = ["rand_core", "rand", "compat", "compatibility"]
[features]
default = ["std"]
std = ["rand_core_06/std", "rand_core/std"]
[dependencies]
rand_core = { version = "0.9", default-features = false }
rand_core_06 = { package = "rand_core", version = "0.6", default-features = false }
[dev-dependencies]
rand_core = { version = "0.9", default-features = true }
rand = { version = "0.9" }