forked from PLC-lang/rusty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (73 loc) · 1.85 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
[package]
name = "rusty"
version = "0.2.0"
authors = [
"Ghaith Hachem <[email protected]>",
"Mathias Rieder <[email protected]>",
]
edition = "2021"
readme = "README.md"
repository = "https://github.com/ghaith/rusty/"
license = "LGPL-3.0-or-later"
keywords = ["iec61131", "st", "Structued_Text"]
categories = ["development-tools::build-utils"]
[features]
default = []
verify = []
[dependencies]
plc_ast = { path = "./compiler/plc_ast" }
plc_util = { path = "./compiler/plc_util" }
logos = "0.12.0"
thiserror = "1.0"
clap = { version = "3.0", features = ["derive"] }
indexmap = "1.6"
codespan-reporting = "0.11.1"
generational-arena = "0.2.8"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
toml = "0.5"
lazy_static = "1.4.0"
shell-words = "1.1.0"
itertools = "0.10.5"
rusty-derive = { path = "rusty-derive" }
lld_rs = "140.0.0"
which = "4.2.5"
log.workspace = true
inkwell.workspace = true
chrono.workspace = true
[dev-dependencies]
num = "0.4"
insta = "1.20.0"
pretty_assertions = "1.3.0"
driver = { path = "./compiler/plc_driver/", package = "plc_driver" }
source = { path = "./compiler/plc_source/", package = "plc_source" }
project = { path = "./compiler/plc_project/", package = "plc_project" }
serial_test = "*"
tempfile = "3"
encoding_rs.workspace = true
encoding_rs_io.workspace = true
[lib]
name = "rusty"
path = "src/lib.rs"
[workspace]
members = [
"xtask",
"libs/stdlib",
"compiler/plc_driver",
"compiler/plc_ast",
"compiler/plc_diagnostics",
"compiler/plc_project",
"compiler/plc_source",
"compiler/plc_util",
"rusty-derive",
]
default-members = [".", "compiler/plc_driver"]
[workspace.dependencies]
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = [
"llvm14-0",
] }
encoding_rs = "0.8"
encoding_rs_io = "0.1"
log = "0.4"
chrono = { version = "0.4", default-features = false }