dust/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

2023-10-05 13:25:09 +00:00
[package]
2023-10-18 23:38:43 +00:00
name = "dust-lang"
2023-12-30 03:26:37 +00:00
description = "General purpose programming language"
version = "0.4.0"
2023-11-20 17:49:20 +00:00
repository = "https://git.jeffa.io/jeff/dust.git"
2023-11-15 03:01:17 +00:00
edition = "2021"
2023-10-05 13:25:09 +00:00
license = "MIT"
2023-12-30 14:29:33 +00:00
authors = ["Jeff Anderson"]
2023-10-05 13:25:09 +00:00
[[bin]]
name = "dust"
path = "src/main.rs"
2023-11-20 17:49:20 +00:00
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
2023-10-05 13:25:09 +00:00
[dependencies]
clap = { version = "4.4.4", features = ["derive"] }
csv = "1.2.2"
2023-12-30 14:29:33 +00:00
libc = "0.2.148"
log = "0.4.20"
2023-10-05 13:25:09 +00:00
rand = "0.8.5"
rayon = "1.8.0"
reqwest = { version = "0.11.20", features = ["blocking", "json"] }
rustyline = { version = "12.0.0", features = ["derive", "with-file-history"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
2023-12-30 14:29:33 +00:00
strip-ansi-escapes = "0.2.0"
2023-10-05 13:25:09 +00:00
toml = "0.8.1"
tracing = "0.1.40"
2023-10-05 13:25:09 +00:00
tree-sitter = "0.20.10"
2023-12-30 07:04:39 +00:00
egui = "0.24.1"
eframe = { version = "0.24.1", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.10"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
2023-10-05 13:25:09 +00:00
[build-dependencies]
cc = "1.0"