2024-02-21 11:04:18 -05:00
|
|
|
[package]
|
|
|
|
name = "talc-std"
|
2025-02-06 09:48:49 -05:00
|
|
|
version = "0.2.3"
|
2024-02-21 11:04:18 -05:00
|
|
|
edition = "2021"
|
2024-12-25 22:58:12 -05:00
|
|
|
rust-version = "1.81.0"
|
2024-02-21 11:04:18 -05:00
|
|
|
|
2024-12-31 22:09:51 -05:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2024-02-21 11:04:18 -05:00
|
|
|
[dependencies]
|
2024-02-23 14:54:34 -05:00
|
|
|
talc-lang = { path = "../talc-lang" }
|
|
|
|
talc-macros = { path = "../talc-macros" }
|
2025-01-18 19:06:58 -05:00
|
|
|
lazy_static = "1"
|
|
|
|
regex = { version = "1", optional = true }
|
2025-02-06 09:48:49 -05:00
|
|
|
rand = { version = "0.9", optional = true }
|
2024-02-27 00:18:43 -05:00
|
|
|
|
|
|
|
[features]
|
2025-01-06 00:15:50 -05:00
|
|
|
default = ["rand", "regex", "file"]
|
2025-02-06 09:48:49 -05:00
|
|
|
rand = ["dep:rand"]
|
2024-11-14 14:16:33 -05:00
|
|
|
regex = ["dep:regex"]
|
2025-01-06 00:15:50 -05:00
|
|
|
file = []
|