-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) · 1.18 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
[package]
name = "unity_code_native"
version = "1.0.0"
edition = "2024"
[[bin]]
name = "unity_code_native"
path = "src/main.rs"
[dependencies]
sysinfo = "0.36"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio = { version = "1.46", features = ["macros", "rt", "net", "io-util", "io-std", "time", "fs"] }
tower-lsp = "0.20"
tree-sitter = "0.25"
# Don't upadte this package `tree-sitter-css` for no reason
# It can cause many bugs, any change in syntax tree structure can break our code
tree-sitter-css = "0.23"
tree-sitter-c-sharp = "0.23"
malva = "0.13.1"
log = { version = "0.4", features = ["std"] }
chrono = { version = "0.4", features = ["serde"] }
dirs = "6.0"
thiserror = "2.0"
url = "2.5"
urlencoding = "2.1.3"
quick-xml = "0.38"
notify = "8.1"
regex = "1.11"
[dev-dependencies]
tempfile = "3.20"
scraper = "0.23"
[[example]]
name = "tree_dumper"
path = "examples/tree_dumper.rs"
# development release build for fast builds during iterative development
[profile.release-fast]
inherits = "release"
opt-level = 0
incremental = true
debug = false
lto = false
# release build
[profile.release]
opt-level = 3
incremental = false
debug = false
lto = false