-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
34 lines (32 loc) · 1.24 KB
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
31
32
33
34
[workspace]
members = [
"source-code/parser",
"source-code/typecheck", # pure Rust, zero LLVM — shared by hsharp-compiler, hsharp-lsp, hsharp-playground
"source-code/compiler", # Requires: llvm-21-dev libpolly-21-dev (apt.llvm.org/unstable)
"source-code/cli",
"source-code/interpreter",
"source-code/playground", # WASM playground for hsharp-lang.org — pure Rust, no LLVM. See its own Cargo.toml/lib.rs doc comments.
"source-code/lsp", # Language Server — pure Rust, no LLVM, ships independently of the compiler.
"source-code/hlib", # .hlib (HackerOS Lib) archive format reader/writer — pure Rust, no LLVM, no cross-crate deps besides std. See source-code/hlib/src/lib.rs.
]
resolver = "2"
[workspace.package]
version = "0.9.0"
edition = "2021"
authors = ["HackerOS Team <hackeros068@gmail.com>"]
license = "MPL-2.0"
[workspace.dependencies]
# Shared deps
anyhow = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.4", features = ["derive", "color"] }
colored = "2.0"
indicatif = "0.17"
tokio = { version = "1.35", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
dirs = "5.0"
walkdir = "2.4"
regex = "1.10"
indexmap = "2.0"