[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-progress"
version = "0.8.3"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/src/**",
"/doc/**",
"/tests/**",
"/benches/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic progress reporting abstractions for Qubit Rust libraries"
homepage = "https://github.com/qubit-ltd/rs-progress"
documentation = "https://docs.rs/qubit-progress"
readme = "README.md"
keywords = [
"progress",
"reporting",
"status",
"stage",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-progress"
[features]
default = []
json-lines = [
"serde",
"dep:serde_json",
]
log = ["dep:log"]
serde = ["dep:serde"]
[lib]
name = "qubit_progress"
path = "src/lib.rs"
doctest = true
[[test]]
name = "coverage_tests"
path = "tests/coverage_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "event_tests"
path = "tests/event_tests.rs"
[[test]]
name = "lifecycle_contract_tests"
path = "tests/lifecycle_contract_tests.rs"
[[test]]
name = "metric_allocation_tests"
path = "tests/metric_allocation_tests.rs"
[[test]]
name = "metric_tests"
path = "tests/metric_tests.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "operation_attributes_tests"
path = "tests/operation_attributes_tests.rs"
[[test]]
name = "operation_state_tests"
path = "tests/operation_state_tests.rs"
[[test]]
name = "stage_tests"
path = "tests/stage_tests.rs"
[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"
[[bench]]
name = "progress_bench"
path = "benches/progress_bench.rs"
harness = false
[dependencies.log]
version = "0.4"
optional = true
[dependencies.qubit-fast-cas]
version = "0.3"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[dev-dependencies.criterion]
version = "0.8"
default-features = false
[dev-dependencies.loom]
version = "0.7"
[dev-dependencies.serde_json]
version = "1.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]