-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 879 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
[package]
name = "pouf"
version = "0.7.0"
authors = ["Ferry Jérémie <[email protected]>"]
description = "Pouf is a cli program for produce fake datas."
keywords = ["app", "cli", "faker", "data", "random"]
categories = ["command-line-utilities"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/mothsart/pouf"
homepage = "https://github.com/mothsart/pouf"
edition = "2021"
build = "build.rs"
[dependencies]
clap = { version="4.4", features=['cargo'] }
random_color = "0.6"
fake = { version="2.5", features=['chrono', 'http', 'semver', 'random_color'] }
chrono = { version = "0.4" }
http = { version = "0.2" }
semver = { version = "1" }
unidecode = "0.3"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
askama_parser = "0.2"
[build-dependencies]
clap = { version="4.4", features=['cargo'] }
clap_complete = { version="4.4" }