[package]
edition = "2018"
rust-version = "1.89.0"
name = "proconio"
version = "0.6.0"
authors = ["statiolake <statiolake@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easy IO library for competitive programming"
readme = "README.md"
keywords = [
"io",
"procon",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/statiolake/proconio-rs"
[features]
derive = ["proconio-derive"]
[lib]
name = "proconio"
path = "src/lib.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
required-features = ["derive"]
[[test]]
name = "fastout"
path = "tests/fastout.rs"
required-features = ["derive"]
[[test]]
name = "input_once"
path = "tests/input_once.rs"
harness = false
[[test]]
name = "interactive"
path = "tests/interactive.rs"
harness = false
[[test]]
name = "issue_14"
path = "tests/issue_14.rs"
harness = false
required-features = ["derive"]
[[test]]
name = "mixed_source"
path = "tests/mixed_source.rs"
harness = false
[[test]]
name = "read_value"
path = "tests/read_value.rs"
harness = false
[[test]]
name = "read_value_interactive"
path = "tests/read_value_interactive.rs"
harness = false
[[test]]
name = "stdin"
path = "tests/stdin.rs"
harness = false
[[test]]
name = "ui"
path = "tests/ui.rs"
required-features = ["derive"]
[dependencies.proconio-derive]
version = "0.2.0"
optional = true
[dev-dependencies.assert_cli]
version = "0.6.3"
[dev-dependencies.rustversion]
version = "1.0.2"
[dev-dependencies.trybuild]
version = "=1.0.67"