[package]
edition = "2021"
rust-version = "1.70.0"
name = "input_py"
version = "2.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "you can use input like python3"
readme = "README.md"
keywords = [
"input",
"stdin",
"python",
"cli",
"terminal",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/T3pp31/input_py"
[lib]
name = "input_py"
path = "src/lib.rs"
[[bin]]
name = "input_py"
path = "src/main.rs"
[[test]]
name = "builder_tests"
path = "tests/builder_tests.rs"
[[test]]
name = "ci_workflow_tests"
path = "tests/ci_workflow_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "io_tests"
path = "tests/io_tests.rs"
[[test]]
name = "process_input_tests"
path = "tests/process_input_tests.rs"
[dependencies]