-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (86 loc) · 2.73 KB
/
Cargo.toml
File metadata and controls
90 lines (86 loc) · 2.73 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[workspace.package]
version = "0.6.0"
repository = "https://github.com/RedstoneWizard08/QuickScript"
authors = ["RedstoneWizard08", "td5038", "QuickScript Contributors"]
description = "A quick programming language with a fast and efficient compiler implemented in Rust."
license = "MIT"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.17", features = ["derive", "color"] }
clap-verbosity-flag = "2.2.1"
clap_complete = "4.5.26"
const_format = "0.2.32"
cranelift-codegen = { version = "0.111.0", features = ["all-arch", "anyhow", "core", "disas"] }
cranelift-frontend = "0.111.0"
cranelift-module = "0.111.0"
cranelift-native = "0.111.0"
cranelift-control = "0.111.0"
cranelift-entity = "0.111.0"
wasmtime-jit-icache-coherence = "24.0.0"
log = "0.4.22"
notify = "6.1.1"
object = { version = "0.36.4", features = ["write", "read_core", "elf"] }
pretty_env_logger = "0.5.0"
rand = "0.8.5"
target-lexicon = "0.12.16"
tempfile = "3.12.0"
which = "6.0.3"
thiserror = "1.0.63"
lnk = "0.5.1"
tower-lsp = "0.20.0"
pest = { version = "2.7.11", features = ["pretty-print"] }
pest_derive = "2.7.11"
strum = { version = "0.26.3", features = ["derive"] }
miette = { version = "7.2.0", features = ["fancy", "serde"] }
parking_lot = { version = "0.12.3", features = ["arc_lock"] }
debug-ignore = "1.0.5"
libc = { version = "0.2.158" }
serde = { version = "1.0.209", features = ["derive"] }
ron = "0.8.1"
region = "2.2.0"
memmap2 = "0.9.4"
derivative = "2.2.0"
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_System_LibraryLoader", "Win32_System_Memory"] }
smallvec = { version = "1.13.2", features = ["union"] }
hashbrown = { version = "0.14.5", default-features = false }
similar = "2.6.0"
dashmap = "6.1.0"
tokio = { version = "1.40.0", features = ["full"] }
ropey = "1.6.1"
async-trait = "0.1.82"
serde_json = "1.0.128"
im-rc = "15.1.0"
regex = "1.10.6"
qsc-ast = { path = "./crates/qsc-ast" }
qsc-cli = { path = "./crates/qsc-cli" }
qsc-codegen = { path = "./crates/qsc-codegen" }
qsc-compiler = { path = "./crates/qsc-compiler" }
qsc-core = { path = "./crates/qsc-core" }
qsc-jit = { path = "./crates/qsc-jit" }
qsc-lexer = { path = "./crates/qsc-lexer" }
qsc-linker = { path = "./crates/qsc-linker" }
qsc-lsp = { path = "./crates/qsc-lsp" }
qsc-object = { path = "./crates/qsc-object" }
qsc-processor = { path = "./crates/qsc-processor" }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[workspace]
resolver = "2"
members = [
"crates/qsc-ast",
"crates/qsc-cli",
"crates/qsc-codegen",
"crates/qsc-compiler",
"crates/qsc-core",
"crates/qsc-jit",
"crates/qsc-lexer",
"crates/qsc-linker",
"crates/qsc-lsp",
"crates/qsc-object",
"crates/qsc-processor",
]