2024-02-21 16:04:18 +00:00
|
|
|
[package]
|
|
|
|
name = "talc-std"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-23 19:54:34 +00:00
|
|
|
talc-lang = { path = "../talc-lang" }
|
|
|
|
talc-macros = { path = "../talc-macros" }
|
|
|
|
lazy_static = "1.4"
|
2024-02-27 05:18:43 +00:00
|
|
|
rand = { version = "0.8", optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["random"]
|
|
|
|
random = ["dep:rand"]
|