forked from PLC-lang/rusty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 809 Bytes
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
[package]
name = "rusty"
version = "0.2.0"
authors = ["Ghaith Hachem <ghaith.hachem@gmail.com>", "Mathias Rieder <mathias.rieder@gmail.com>"]
edition = "2018"
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"]
[dependencies]
logos = "0.12.0"
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features= ["llvm11-0"] }
pretty_assertions = "0.6.1"
thiserror = "1.0"
structopt = "0.3"
indexmap = "1.6"
chrono = "0.4"
glob = "0.3.0"
encoding_rs = "0.8"
encoding_rs_io = "0.1"
codespan-reporting = "0.11.1"
mun_lld = "110.0.0"
generational-arena = "0.2.8"
[lib]
name = "rusty"
path = "src/lib.rs"
[[bin]]
name = "rustyc"
path = "src/main.rs"