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]
|
|
|
|
env_logger = "0.11.3"
|
|
|
|
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"
|