-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
99 lines (89 loc) · 3.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
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
91
92
93
94
95
96
97
98
99
[workspace]
members = ["crates/*", "dev/*", "tests/narxia-test-runner"]
default-members = ["dev/cargo-guard"]
resolver = "2"
[workspace.package]
version = "0.0.0"
publish = false
edition = "2024"
homepage = "https://dnbln.dev/narxia"
repository = "https://github.com/dnbln/narxia"
description = "A programming language for distributed systems."
keywords = ["narxia", "programming-language"]
license = "MIT OR Apache-2.0"
[profile.release]
debug = true
[profile.dev.package."rowan"]
opt-level = 3
[profile.dev.package."libtest-mimic"]
opt-level = 3
[profile.dev.package."narxia-syn"]
opt-level = 3
[workspace.dependencies]
narxia-codegen = { path = "crates/narxia-codegen" }
narxia-codegen-llvm = { path = "crates/narxia-codegen-llvm" }
narxia-data-structures = { path = "crates/narxia-data-structures" }
narxia-dir-structures = { path = "dev/narxia-dir-structures" }
narxia-driver = { path = "crates/narxia-driver" }
narxia-hir = { path = "crates/narxia-hir" }
narxia-hir-lower = { path = "crates/narxia-hir-lower" }
narxia-hir-db = { path = "crates/narxia-hir-db" }
narxia-hir-typechk = { path = "crates/narxia-hir-typechk" }
narxia-hiri = { path = "crates/narxia-hiri" }
narxia-log = { path = "crates/narxia-log" }
narxia-log-impl = { path = "crates/narxia-log-impl" }
narxia-proc = { path = "crates/narxia-proc" }
narxia-src-db = { path = "crates/narxia-src-db" }
narxia-ssa = { path = "crates/narxia-ssa" }
narxia-ssa-lower = { path = "crates/narxia-ssa-lower" }
narxia-ssa-validator = { path = "crates/narxia-ssa-validator" }
narxia-syn = { path = "crates/narxia-syn" }
narxia-syn-db = { path = "crates/narxia-syn-db" }
dir-structure-macros = { path = "dev/dir-structure-macros", version = "=0.1.5" }
dir-structure = { path = "dev/dir-structure", version = "0.1.5" }
bumpalo = "3.6.0"
cargo_metadata = "0.19.1"
nextest-metadata = "0.12.1"
clap = { version = "4.4.3", features = ["derive"] }
criterion = { version = "0.5", features = ["html_reports"] }
bitflags = "2"
dashmap = "6.1.0"
drop_bomb = "0.1.5"
glob = "0.3.0"
human-panic = "2.0.0"
humantime = "2.1.0"
libc = "0.2"
libtest-mimic = "0.8.1"
llvm-sys = { version = "201.0.0", default-features = false }
miette = { version = "7.2.0", features = ["fancy"] }
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
path-absolutize = "3.1.1"
prodash = { version = "29.0.0", default-features = false, features = [
"render-line",
"render-line-crossterm",
"render-line-autoconfigure",
"progress-tree",
] }
reqwest = { version = "0.12.15", features = ["blocking"] }
rowan = "0.16.1"
salsa = { path = "crates/narxia-salsa" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
similar = "2.7"
smallvec = "1.10.0"
tar = "0.4"
thiserror = "2.0.12"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
xz = "0.1.0"
zip = "2.6.1"
[workspace.lints.rust]
unsafe_code = "deny"
unused_imports = "deny"
unused_unsafe = "deny"
[workspace.lints.clippy]
absolute_paths = "deny"
alloc_instead_of_core = "deny"
allow_attributes = "deny"
suspicious = { level = "deny", priority = -1 }
style = "deny"