learnwy_bin_utils 0.1.2

self use
Documentation
[package]
name = "learnwy_bin_utils"
version = "0.1.2"
authors = ["汪洋 <wangyang.learnwy@bytedance.com>"]
edition = "2018"
description = "self use"
license = "GPL-3.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
confy = "0.3"
human-panic = "1.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
rand = "0.7"
dirs = "1"
chrono = "0.4"

[lib]
name = 'learnwy_lib'
path = 'src/lib/lib.rs'
test = true            # Is tested by default.
doctest = true         # Documentation examples are tested by default.
bench = true           # Is benchmarked by default.
doc = true             # Is documented by default.
plugin = false         # Used as a compiler plugin (deprecated).
proc-macro = false     # Set to `true` for a proc-macro library.
harness = true         # Use libtest harness.
edition = "2015"       # The edition of the target.
crate-type = ["lib"]   # The crate types to generate.
#required-features = [] # Features required to build this target (N/A for lib).