dust/dust-lang/Cargo.toml

21 lines
504 B
TOML
Raw Normal View History

2024-03-20 08:42:13 +00:00
[package]
name = "dust-lang"
description = "Interpreter library for the Dust programming language"
version = "0.5.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
[dependencies]
2024-03-24 13:10:49 +00:00
ariadne = "0.4.0"
2024-03-20 08:42:13 +00:00
chumsky = { version = "1.0.0-alpha.6", features = ["pratt", "label"] }
clap = { version = "4.5.2", features = ["derive"] }
colored = "2.1.0"
env_logger = "0.11.3"
log = "0.4.21"
rand = "0.8.5"
2024-03-20 21:05:37 +00:00
rayon = "1.9.0"
2024-03-20 08:42:13 +00:00
stanza = "0.5.1"