-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
38 lines (33 loc) · 1.05 KB
/
Cargo.toml
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
[workspace]
members = ["parser", "enderpy", "typechecker", "lsp", "benchmark", "compat"]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.72.0"
homepage = "https://github.com/Glyphack/enderpy"
documentation = "https://github.com/Glyphack/enderpy"
authors = ["Shaygan Hooshyari"]
license = "AGPL-3.0-only"
repository = "https://github.com/Glyphack/enderpy"
[workspace.dependencies]
log = { version = "0.4.17" }
serde = { version = "1.0.152", features = ["derive"] }
miette = { version = "7.2.0", features = ["fancy"] }
insta = { version = "1.38.0", features = ["filters", "glob"] }
codspeed-criterion-compat = { version = "2.6.0"}
thiserror = "1.0.48"
criterion = "0.5.1"
tokio = { version = "1.40", features = ["full"] }
reqwest = { version = "0.12.7", features = ["blocking"] }
dashmap = "6.0"
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features = ["env-filter"]}
fxhash = "0.2.1"
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[profile.release]
lto = "fat"
opt-level = 3
# panic = "abort"