-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (29 loc) · 989 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
[package]
name = "python-project-generator"
version = "0.3.0"
edition = "2021"
authors = ["Paul Sanders <[email protected]>"]
description = "Generates a Python project structure."
documentation = "https://github.com/sanders41/python-project-generator"
homepage = "https://github.com/sanders41/python-project-generator"
repository = "https://github.com/sanders41/python-project-generator"
readme = "README.md"
keywords = ["cli", "python", "template"]
categories = ["command-line-utilities"]
license = "MIT"
[[bin]]
name = "python-project"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.2", features = ["color", "suggestions", "derive"] }
colored = "2.0.4"
dirs = "5.0.1"
indicatif = "0.17.6"
minijinja = "1.0.7"
reqwest = { version = "0.11.20", features = ["json", "blocking"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
time = { version = "0.3.28", features = ["local-offset"] }
[dev-dependencies]
tempfile = "3.8.0"