-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (38 loc) · 1013 Bytes
/
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
[package]
name = "cmm"
authors = ["Ji Gaoqiang", "Wu Yifei", "Gao Chenxi"]
version = "0.3.2"
edition = "2021"
description = "cmm is a simplified version of the C language introduced after the book \"Compiler Construction: Principles and Practice\"."
license = "MIT OR Apache-2.0"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pest = "2.0.2"
pest_derive = "2.1.0"
clap = { version = "3.1", features = ["derive"] }
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = [
"llvm10-0",
] }
either = "1.6.1"
lazy_static = "1.4.0"
[package.metadata.deb]
pre-depends = "clang (>= 10.0.0)"
extended-description-file = "README.md"
assets = [
[
"target/release/main",
"usr/bin/cmm",
"755",
],
[
"doc/report.md",
"usr/share/doc/cmm/Document.md",
"644",
],
[
"src/io.c",
"usr/lib/cmm/io.c",
"644",
],
]