talc/talc-std/Cargo.toml
trimill 5a03ffedf1
All checks were successful
docs / test (push) Successful in 11s
webrepl / test (push) Successful in 2m2s
rand --> 0.9
2025-02-06 09:48:49 -05:00

21 lines
414 B
TOML

[package]
name = "talc-std"
version = "0.2.3"
edition = "2021"
rust-version = "1.81.0"
[lints]
workspace = true
[dependencies]
talc-lang = { path = "../talc-lang" }
talc-macros = { path = "../talc-macros" }
lazy_static = "1"
regex = { version = "1", optional = true }
rand = { version = "0.9", optional = true }
[features]
default = ["rand", "regex", "file"]
rand = ["dep:rand"]
regex = ["dep:regex"]
file = []