talc/talc-std/Cargo.toml

16 lines
293 B
TOML
Raw Permalink Normal View History

2024-02-21 16:04:18 +00:00
[package]
name = "talc-std"
2024-11-12 20:40:51 +00:00
version = "0.2.1"
2024-02-21 16:04:18 +00:00
edition = "2021"
[dependencies]
2024-02-23 19:54:34 +00:00
talc-lang = { path = "../talc-lang" }
talc-macros = { path = "../talc-macros" }
2024-10-29 02:42:21 +00:00
lazy_static = "1.5"
regex = "1.11"
2024-02-27 05:18:43 +00:00
rand = { version = "0.8", optional = true }
[features]
default = ["random"]
random = ["dep:rand"]