talc/talc-std/Cargo.toml

23 lines
503 B
TOML
Raw Normal View History

2024-02-21 11:04:18 -05:00
[package]
name = "talc-std"
2024-12-21 01:00:36 -05:00
version = "0.2.2"
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"
2024-12-21 00:55:45 -05:00
num-bigint = { version = "0.4", features = ["rand"], optional = true }
2025-01-18 19:06:58 -05:00
regex = { version = "1", optional = true }
2024-02-27 00:18:43 -05:00
rand = { version = "0.8", optional = true }
[features]
2025-01-06 00:15:50 -05:00
default = ["rand", "regex", "file"]
2024-12-21 00:55:45 -05:00
rand = ["dep:rand", "dep:num-bigint"]
2024-11-14 14:16:33 -05:00
regex = ["dep:regex"]
2025-01-06 00:15:50 -05:00
file = []