-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (33 loc) · 962 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
33
34
35
36
37
38
39
[package]
name = "jen"
version = "1.7.0" # remember to update html_root_url
authors = ["Isaac Whitfield <iw@whitfin.io>"]
description = "A simple CLI generation tool for creating large datasets."
repository = "https://github.com/whitfin/jen"
keywords = ["dataset", "generator", "json", "template"]
categories = ["command-line-interface", "command-line-utilities", "template-engine", "text-processing"]
readme = "README.md"
edition = "2018"
license = "MIT"
[lib]
name = "jen"
path = "src/lib.rs"
[[bin]]
name = "jen"
path = "src/bin/jen.rs"
[features]
default = ["build"]
build = ["clap", "serde", "serde_json"]
[dependencies]
failure = "0.1"
tera = "1.7"
# addon dependencies
bson = "2.6"
fake = "1.3"
nanoid = "0.4"
rand = "0.8"
uuid = { version = "1.1", features = ["v4"] }
# optional dependencies only use for CLI
clap = { version = "4.2", optional = true }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }