-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (33 loc) · 1.12 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
[package]
name = "python-project-generator"
version = "2.0.4"
edition = "2021"
authors = ["Paul Sanders <paul@paulsanders.dev>"]
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.94"
clap = { version = "4.5.22", features = ["color", "suggestions", "derive"] }
colored = "2.2.0"
dirs = "5.0.1"
exponential-backoff = "2.0.0"
indicatif = "0.17.9"
insta = { version = "1.41.1", features = ["filters"] }
minijinja = "2.5.0"
rayon = "1.10.0"
reqwest = { version = "0.12.8", features = ["json", "blocking"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
time = { version = "0.3.37", features = ["local-offset"] }
[dev-dependencies]
insta = { version = "1.41.1", features = ["yaml"] }
tempfile = "3.13.0"