-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (46 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (46 loc) · 1.37 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 = "mindustry_logic_bang_lang"
version = "0.22.6"
edition = "2021"
authors = ["A4-Tacks <wdsjxhno1001@163.com>"]
repository = "https://github.com/A4-Tacks/mindustry_logic_bang_lang"
description = """\
Mindustry logic extension meta-programming language compiler, \
for zero additional overhead!"""
categories = ["command-line-utilities"]
keywords = ["compiler", "lang", "mindustry"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"./tools/display_source",
"./tools/parser",
"./tools/parser/tests",
"./tools/syntax",
"./tools/tag_code",
"./tools/utils",
"./tools/var_utils",
"./tools/logic_lint",
"./tools/mdt-ops-generator",
"./tools/mini-paren",
"./tools/decompiler",
"./tools/bangls",
]
exclude = [
]
[features]
default = ["parser/lalrpop"]
[dependencies]
tag_code = { path = "./tools/tag_code", version = "*" }
display_source = { path = "./tools/display_source", version = "*" }
parser = { path = "./tools/parser", version = "*", default-features = false }
syntax = { path = "./tools/syntax", version = "*" }
logic_lint = { path = "./tools/logic_lint", version = "*" }
mini-paren = { version = "0.1.0", path = "tools/mini-paren" }
line-column = "0.3.5"
[profile.dev]
debug = false
lto = "off"
[profile.release]
debug = false
strip = true
lto = true