hyper-scripter 0.3.3

The script managing tool for script lovers
Documentation
[package]
name = "hyper-scripter"
version = "0.3.3"
authors = ["why8ther <lturtsamuel@gmail.com>"]
edition = "2018"
autotests = false
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
description = "The script managing tool for script lovers"

[[test]]
name = "issues"
path = "tests/issues.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"
required-features = ["no-prompt"] # NOTE: 若沒有此特徵就不會測,並非開啟此特徵

[[test]]
name = "util"
path = "tests/util_test.rs"
required-features = ["no-prompt"] # NOTE: 若沒有此特徵就不會測,並非開啟此特徵

[[bin]]
name = "hs"
path = "src/main.rs"

[features]
default = []
no-prompt = []

[dependencies]
console = "0.13.0"
async-trait = "0.1.38"
chrono = { version = "0.4.7", features = ["serde"] }
sqlx = { version = "0.4.0-beta.1", default-features = false, features = [ "runtime-tokio", "macros", "chrono", "migrate", "sqlite" ] }
tokio = { version = "0.2.22", features = ["full"] }
env_logger = "0.6.2"
lazy_static = "1.4"
log = "0.4.8"
regex = "1.3.9"
serde = { version = "1.0.98", features = ["derive"] }
serde_json = "1.0.40"
derive_more = "0.99.0"
structopt = "0.3"
fuzzy-matcher = "0.3.5"
prettytable-rs = "^0.8"
colored = "2"
dirs = "3.0.1"
handlebars = "3.3.0"
toml = "0.5.6"
hyper-scripter-historian = { version = "0.3.2", path = "../hyper-scripter-historian" }
hyper-scripter-util = { version = "0.3.2", path = "../hyper-scripter-util" }

[dependencies.openssl]
version = "0.10.29"
features = [ "vendored" ]

[build-dependencies]
sqlx = { version = "0.4.0-beta.1", default-features = false, features = [ "runtime-tokio", "macros", "chrono", "migrate", "sqlite" ] }
tokio = { version = "0.2.22", features = ["full"] }
log = "0.4.8"