-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 966 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
[package]
name = "sbrd-gen"
version = "0.1.0"
edition = "2021"
authors = ["ogata-k <[email protected]>"]
description = "A crate for Schema-Based Random Data GENerator"
license = "MIT"
readme = "README.md"
repository = "https://github.com/ogata-k/sbrd-gen"
categories = ["command-line-utilities", "development-tools", "science"]
keywords = ["generator", "cli", "random", "faker", "development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.8.4", features = ["alloc"] }
rand_distr = "0.4.3"
chrono = "0.4.19"
human-string-filler = "1.0.0"
rt-format = "0.3.0"
evalexpr = "7.0.0"
either = "1.6.1"
# Serialize or Deserialize
serde = { version = "1.0.136", features = ["derive"] }
serde_with = "1.11.0"
serde_yaml = "0.8.23"
serde_json = "1.0.79"
csv = "1.1.6"
# Only use CLI
clap = { version = "3.1.0", features = ["cargo", "derive"] }
exitcode = "1.1.2"
human-panic = "1.0.3"