-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (65 loc) · 1.54 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
[workspace]
members = [".", "crates/*"]
[workspace.package]
version = "0.2.0"
authors = ["st1020 <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/st1020/lucia-lang"
[workspace.dependencies]
lucia-lang = { path = "./" }
# Compiler and Runtime
text-size = "1"
compact_str = "0.8"
unicode-ident = "1"
index_vec = "0.1"
indexmap = "2"
rustc-hash = "2"
gc-arena = "0.5"
# Error
thiserror = "2"
anyhow = "1"
# Log
log = "0.4"
env_logger = "0.11"
# Async
tokio = { version = "1", features = ["rt-multi-thread", "io-std", "macros"] }
dashmap = "6"
# LSP
ropey = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
tower-lsp = { version = "0.20", features = ["proposed"] }
# CLI
clap = { version = "4", features = ["derive"] }
[package]
name = "lucia-lang"
description = "Lucia programming language"
readme = "README.md"
keywords = ["language", "compiler", "lexer", "parser", "lucia"]
categories = ["compilers", "parser-implementations"]
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
text-size.workspace = true
compact_str.workspace = true
unicode-ident.workspace = true
index_vec.workspace = true
indexmap.workspace = true
rustc-hash.workspace = true
gc-arena.workspace = true
thiserror.workspace = true
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "scripts"
harness = false
[[bench]]
name = "compiler"
harness = false
[profile.release]
opt-level = 3
lto = true