-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (39 loc) · 873 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
42
43
44
45
46
47
48
[package]
name = "nal"
version = "0.4.0"
authors = ["hyeonupark"]
description = "Nal - your daily programming language"
homepage = "https://github.com/HyeonuPark/Nal"
documentation = "https://docs.rs/nal"
repository = "https://github.com/HyeonuPark/Nal.git"
keywords = ["language", "interpreter"]
categories = ["development-tools", "command-line-utilities"]
readme = "README.md"
license = "MIT/Apache-2.0"
[lib]
path = "src/lib.rs"
[dependencies]
[dependencies.nalc_parser]
version = "0.4"
path = "./nalc_parser"
[dependencies.nalc_atoi]
version = "0.4"
path = "./nalc_atoi"
[dependencies.nali]
version = "0.4"
path = "./nali"
[workspace]
members = [
"nal_symbol",
"nal_ast",
"nal_ir",
"nalc_parser",
"nalc_atoi",
"nali",
]
[badges.travis-ci]
repository = "HyeonuPark/Nal"
branch = "master"
[badges.codecov]
repository = "HyeonuPark"
branch = "master"