forked from dan-da/ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (53 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "rust2uml"
version = "0.0.2"
description = "A library to generating UML language from Rust's project into graphiz/dot file."
authors = [
"adjivas <[email protected]>",
]
readme = "README.md"
license = "MIT OR Apache-2.0"
documentation = "https://github.com/silence-coding/ml"
repository = "https://github.com/silence-coding/ml"
homepage = "https://github.com/silence-coding/ml"
keywords = ["uml", "graph", "dot", "generator", "modeling-language"]
categories = ["visualization"]
edition = "2018"
[[example]]
name = "ml"
path = "examples/main.rs"
doc = false
test = false
[lib]
test = false
doctest = true
[features]
default = []
implem = []
fn-emilgardis = []
lints = ["clippy", "nightly"]
nightly = [] # for building with nightly and unstable features
unstable = [] # for building with unstable features on stable Rust
debug = [] # for building with debug messages
travis = ["lints", "nightly"] # for building with travis-cargo
[dependencies]
dot = "0.1.4"
once_cell = "1.8.0"
strfmt = "0.1.6"
urlencoding = "2.1.0"
# rustc_ast = {package = "rustc-ap-rustc_ast", version = "727.0.0"}
# rustc_ast_pretty = {package = "rustc-ap-rustc_ast_pretty", version = "727.0.0"}
# rustc_parse = {package = "rustc-ap-rustc_parse", version = "727.0.0"}
# rustc_session = {package = "rustc-ap-rustc_session", version = "727.0.0"}
# rustc_errors = {package = "rustc-ap-rustc_errors", version = "727.0.0"}
# rustc_span = {package ="rustc-ap-rustc_span", version = "727.0.0"}
# rustc_serialize = {package = "rustc-ap-rustc_serialize", version = "727.0.0"}
[dependencies.itertools]
version = "0.5"
[dependencies.walkdir]
version = "1"
[dependencies.clippy]
version = "0"
optional = true
[dev-dependencies]
argi = "0.1.0-beta.5"