mirror of
https://github.com/tlsnotary/tlsn-utils.git
synced 2026-01-09 15:08:05 -05:00
22 lines
656 B
TOML
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" }
|