[package]
edition = "2021"
name = "input_py"
version = "1.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "you can use input like python3"
readme = "README.md"
license = "MIT"
[lib]
name = "input_py"
path = "src/lib.rs"
[[bin]]
name = "input_py"
path = "src/main.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]