-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (48 loc) · 1.59 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
[package]
name = "walrus"
authors = ["Sullivan Bognar"]
version = "0.1.6"
edition = "2024"
[build-dependencies]
lalrpop = "0.19.9"
[dev-dependencies]
dotenvy = "0.15"
[profile.release]
debug = true
[features]
dhat-heap = []
# JIT compilation support
jit = ["cranelift-codegen", "cranelift-frontend", "cranelift-jit", "cranelift-module", "cranelift-native", "target-lexicon"]
jit-profiling = [] # Enable profiling output for JIT analysis
[dependencies]
ariadne = "0.6.0"
clap = { version = "4.0.26", features = ["derive"] }
thiserror = "1.0.37"
log = "0.4.17"
simplelog = "0.12.0"
git-version = "0.3.5"
lalrpop-util = { version= "0.19.9", features = ["lexer"] }
snailquote = "0.3.1"
float-ord = "0.3.2"
uuid = { version = "1.2.2", features = ["v4"] }
slotmap = "1.0.6"
once_cell = "1.17.0"
mimalloc = { version = "0.1.34", default-features = false }
dhat = "0.3.2"
rustc-hash = "1.1.0"
rand = "0.8.5"
tokio = { version = "1.43.0", features = ["io-std", "macros", "rt-multi-thread", "sync"] }
tower-lsp = "0.20.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
hyper = { version = "1.6", default-features = false, features = ["http1", "server"] }
httparse = "1.10"
url = "2.5"
# Cranelift JIT compilation (optional, enabled with --features jit)
cranelift-codegen = { version = "0.112", optional = true }
cranelift-frontend = { version = "0.112", optional = true }
cranelift-jit = { version = "0.112", optional = true }
cranelift-module = { version = "0.112", optional = true }
cranelift-native = { version = "0.112", optional = true }
target-lexicon = { version = "0.12", optional = true }