talc/talc-std/Cargo.toml

17 lines
351 B
TOML
Raw 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"
2024-11-14 19:16:33 +00:00
regex = { version = "1.11", optional = true }
2024-02-27 05:18:43 +00:00
rand = { version = "0.8", optional = true }
[features]
2024-11-14 19:16:33 +00:00
default = ["rand", "regex"]
rand = ["dep:rand"]
regex = ["dep:regex"]