talc/talc-std/Cargo.toml
2024-11-14 14:16:33 -05:00

17 lines
351 B
TOML

[package]
name = "talc-std"
version = "0.2.1"
edition = "2021"
[dependencies]
talc-lang = { path = "../talc-lang" }
talc-macros = { path = "../talc-macros" }
lazy_static = "1.5"
regex = { version = "1.11", optional = true }
rand = { version = "0.8", optional = true }
[features]
default = ["rand", "regex"]
rand = ["dep:rand"]
regex = ["dep:regex"]