ext 0.0.2

A Rust extension library.
[package]
name = "ext"
version = "0.0.2"
authors = ["hzqd <hzqelf@163.com>"]
edition = "2021"
description = "A Rust extension library."
repository = "https://gitcode.com/hzqd/ext"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["std"] # Default to using the features
full = ["std", "async", "paral"]
std = ["no-std-compat2/std", "minstant"]
async = ["tokio"]
paral = ["rayon"]

# A no_std compatibility layer
[dependencies.no-std-compat2]
version = "0.4"
features = ["alloc"]

# A timing library
[dependencies.minstant]
version = "0.1"
optional = true

# An iter extension
[dependencies.itertools]
version = "0.14"

# An async runtime
[dependencies.tokio]
version = "1.46"
optional = true
features = ["full"]

# A data parallelism library
[dependencies.rayon]
version = "1.10"
optional = true

[package.metadata.docs.rs]
# Pass `--all-features` to Cargo
all-features = true