[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 = []