[package]
edition = "2021"
rust-version = "1.70"
name = "big_o"
version = "0.2.0"
authors = ["Maksym Arutyunyan"]
build = false
include = [
"/src",
"/tests",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Infers asymptotic computational complexity"
homepage = "https://github.com/maksym-arutyunyan/big_o"
documentation = "https://docs.rs/big_o/"
readme = "README.md"
keywords = [
"big_o",
"complexity",
"analysis",
"performance",
"algorithm",
]
categories = [
"development-tools",
"development-tools::profiling",
"development-tools::testing",
]
license = "Apache-2.0"
repository = "https://github.com/maksym-arutyunyan/big_o"
[package.metadata.docs.rs]
all-features = true
[features]
serde = ["dep:serde"]
[lib]
name = "big_o"
path = "src/lib.rs"
[[test]]
name = "accuracy"
path = "tests/accuracy.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "regressions"
path = "tests/regressions.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.assert_approx_eq]
version = "1.1.0"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]