-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
51 lines (44 loc) · 1.1 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
[package]
name = "forming"
version = "0.1.0"
authors = [ "Phodal Huang <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/inherd/forming"
documentation = "https://github.com/inherd/forming"
homepage = "https://github.com/inherd/forming"
description = """
Forming, is a lightweight architecture design language.
"""
categories = ["text-processing", "command-line-interface", "development-tools"]
exclude = [
".coco/*",
"benchmark/*",
"fixtures/*",
"targets/*",
".github/*",
".gitattributes",
".adr.json",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# serialize
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
pest = "2.1.3"
pest_derive = "2.1.0"
walkdir = { version = "2" }
clap = { version = "3.0.0-beta.5" }
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "my_benchmark"
harness = false
[workspace]
members = [
# 'highlighted_core',
'translator',
'puml',
'codegen/forming_java',
]