24 lines
554 B
TOML
24 lines
554 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"
|
|
colored = "2.1.0"
|
|
log = "0.4.22"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.117"
|
|
getrandom = { version = "0.2", features = [
|
|
"js",
|
|
] } # Indirect dependency, for wasm builds
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.11.5"
|