1
0
mirror of https://github.com/jht5945/rust_util.git synced 2025-12-27 15:40:03 +08:00

feat: add logger level, read json config

This commit is contained in:
2020-09-09 01:35:44 +08:00
parent 79e2618e98
commit 0576c23c5a
3 changed files with 69 additions and 8 deletions

View File

@@ -1,14 +1,20 @@
[package]
name = "rust_util"
version = "0.6.7"
version = "0.6.8"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
description = "Hatter's Rust Util"
license = "MIT"
readme = "README.md"
[features]
default = [] #["serde", "serde_json"]
use_serde = ["serde", "serde_json"]
[dependencies]
libc = "0.2.65"
term = "0.5.2"
term_size = "0.3.1"
lazy_static = "1.3.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }