[package]
edition = "2021"
name = "ac-lib"
version = "0.1.0"
authors = ["hashisato <hashisato.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust library for competitive programming on AtCoder"
documentation = "https://docs.rs/ac-lib"
readme = "README.md"
keywords = [
"atcoder",
"competitive",
"algorithm",
"data-structures",
"programming",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT"
repository = "https://github.com/hashisato/ac-lib"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ac_lib"
path = "src/lib.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "math_tests"
path = "tests/math_tests.rs"
[[test]]
name = "structure_tests"
path = "tests/structure_tests.rs"
[dependencies]