-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 760 Bytes
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
[package]
name = "hatto"
version = "0.1.0"
authors = ["heriet <heriet@heriet.info>"]
description = "CLI for software license policy check."
repository = "https://github.com/heriet/hatto"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = ["example/", ".github/"]
categories = ["development-tools::build-utils"]
keywords = ["license"]
[[bin]]
name = "hatto"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.51"
clap = { version = "3.1.12", features = ["derive"] }
csv = { version = "1.1.6"}
minidom = "0.15.0"
pyo3 = { version = "0.16.5", features = ["auto-initialize"] }
serde = { version = "1.0.140", features = ["derive"] }
serde_json = "1.0.72"
spdx-rs = "0.5.1"
thiserror = "1.0.30"
[build-dependencies]