22 lines
477 B
TOML
22 lines
477 B
TOML
[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]
|
|
annotate-snippets = "0.11.4"
|
|
env_logger = "0.11.3"
|
|
log = "0.4.22"
|
|
rand = "0.8.5"
|
|
rayon = "1.9.0"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.117"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.11.5"
|