dust/dust-lang/Cargo.toml

23 lines
495 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-08-09 01:47:49 +00:00
annotate-snippets = "0.11.4"
colored = "2.1.0"
2024-03-20 08:42:13 +00:00
env_logger = "0.11.3"
log = "0.4.22"
2024-03-20 08:42:13 +00:00
rand = "0.8.5"
2024-03-20 21:05:37 +00:00
rayon = "1.9.0"
2024-06-04 18:47:15 +00:00
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
[dev-dependencies]
env_logger = "0.11.5"