-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) · 1.48 KB
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
[package]
name = "stack-diagram-cli"
version = "0.5.4"
edition = "2024"
rust-version = "1.85"
publish = ["crates-io"]
homepage = "https://stack-diagram.com/"
documentation = "https://stack-diagram.com/docs/guide/getting-started"
keywords = ["stack", "diagram", "cli", "svg"]
categories = ["command-line-utilities", "visualization"]
include = ["/src/**", "/templates/**", "/catalogs/**", "/tests/fixtures/**", "/LICENSE", "/NOTICE", "/THIRD_PARTY_LICENSES.md", "/README.md", "/Cargo.lock"]
description = "Native command-line interface for Stack diagrams"
repository = "https://github.com/stack-sh/cli"
license = "Apache-2.0"
readme = "README.md"
[lib]
name = "stack_cli"
[[bin]]
name = "stack"
path = "src/main.rs"
[dependencies]
roxmltree = "=0.21.1"
serde = { version = "=1.0.229", features = ["derive"] }
serde_json = "=1.0.151"
serde_yaml_ng = "=0.10.0"
sha2 = "=0.11.0"
stack-compiler = "=0.1.0"
stack-engine = "=0.9.1"
stack-theme = "=0.7.0"
ureq = { version = "=3.4.0", default-features = false, features = ["rustls"] }
zip = { version = "=6.0.0", default-features = false, features = ["deflate-flate2-zlib-rs"] }
[features]
conformance = []
[[test]]
name = "formatter-conformance"
path = "tests/formatter_conformance.rs"
required-features = ["conformance"]
[[test]]
name = "template-conformance"
path = "tests/template_conformance.rs"
required-features = ["conformance"]
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"