-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[workspace]
members = ["core", "cli", "stdlib", "lsp"]
resolver = "2"
[workspace.package]
version = "0.1.3"
edition = "2024"
authors = ["lollipopkit <a@lpkt.cn>"]
license = "Apache-2.0"
repository = "https://github.com/lollipopkit/lkr"
description = "A Rust-like scripting language written in Rust with LLVM backend"
[workspace.dependencies]
anyhow = "1"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
serde_yaml = "0"
toml = "0"
once_cell = "1"
chrono = "0"
criterion = "0"
sanitize-filename = "0"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
crossbeam = "0.8"
futures = "0.3"
dashmap = "6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tempfile = "3"
llvm-tools = "0.1"