[package]
edition = "2024"
rust-version = "1.90.0"
name = "ic-stable-roaring"
version = "0.1.1"
authors = ["Inomoto Yota <yota@perforate.org>"]
build = "build.rs"
include = [
"Cargo.toml",
"README.md",
"CONTRIBUTING.md",
"RELEASING.md",
"CHANGELOG.md",
"SECURITY.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"build.rs",
"src/**/*",
"tests/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent Rust Roaring Bitmap for the Internet Computer."
documentation = "https://docs.rs/ic-stable-roaring/"
readme = "README.md"
keywords = [
"internet-computer",
"roaring",
"bitmap",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/perforate-org/ic-stable-roaring"
[features]
canbench = [
"dep:canbench-rs",
"dep:candid",
"dep:ic-cdk",
]
default = []
[lib]
name = "ic_stable_roaring"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.canbench-rs]
version = "0.6"
optional = true
[dependencies.candid]
version = "0.10"
optional = true
[dependencies.ic-cdk]
version = "0.20"
optional = true
[dependencies.ic-stable-structures]
version = "0.7"
[dependencies.roaring]
version = "0.11.4"
[dev-dependencies.proptest]
version = "1.11"