mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-14 22:38:46 +00:00
35 lines
894 B
TOML
35 lines
894 B
TOML
[package]
|
|
name = "kecc"
|
|
version = "0.1.0"
|
|
authors = ["Chunmyong Park <chunmyong.park@kaist.ac.kr>", "Jeehoon Kang <jeehoon.kang@kaist.ac.kr>", "Hyunsu Kim <hyunsu.kim00@kaist.ac.kr>"]
|
|
edition = "2018"
|
|
default-run = "kecc"
|
|
|
|
description = "KAIST Educational C Compiler"
|
|
homepage = "https://github.com/kaist-cp/kecc"
|
|
repository = "https://github.com/kaist-cp/kecc"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "kecc"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "kecc"
|
|
path = "bin/kecc.rs"
|
|
|
|
[[bin]]
|
|
name = "fuzz"
|
|
path = "bin/fuzz.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "2.33.0", features = ["yaml"] }
|
|
# TODO: use crates.io version when https://github.com/vickenty/lang-c/pull/16 is merged
|
|
lang-c = { git = "https://github.com/kaist-cp/lang-c" }
|
|
itertools = "0.9.0"
|
|
failure = "0.1.7"
|
|
tempfile = "3.1.0"
|
|
ordered-float = "1.0"
|
|
hexf = "0.1.0"
|