[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-io"
version = "0.2.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small stream I/O trait utilities for Rust"
homepage = "https://github.com/qubit-ltd/rs-io"
documentation = "https://docs.rs/qubit-io"
readme = "README.md"
keywords = [
"io",
"read",
"write",
"seek",
"qubit",
]
categories = ["rust-patterns"]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-io"
[lib]
name = "qubit_io"
path = "src/lib.rs"
doctest = true
[[test]]
name = "codecs_tests"
path = "tests/codecs_tests.rs"
[[test]]
name = "ext_tests"
path = "tests/ext_tests.rs"
[[test]]
name = "prelude_tests"
path = "tests/prelude_tests.rs"
[[test]]
name = "traits_tests"
path = "tests/traits_tests.rs"
[[test]]
name = "util_tests"
path = "tests/util_tests.rs"
[[test]]
name = "wrappers_tests"
path = "tests/wrappers_tests.rs"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]