[package]
edition = "2024"
name = "supersonic"
version = "2.2.0"
authors = ["d33pster <deep.main.ac@gmail.com>"]
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A one-stop rust crate for high-speed, high-performance, high-concurrency data-structures."
homepage = "https://github.com/d33p0st/supersonic"
documentation = "https://docs.rs/supersonic"
readme = "README.md"
keywords = [
"data-structures",
"concurrency",
"mpmc",
"high-performance",
"async",
]
categories = [
"data-structures",
"concurrency",
"asynchronous",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/d33p0st/supersonic.git"
resolver = "3"
[features]
default = [
"nightly",
"list",
]
list = []
nightly = []
[lib]
name = "supersonic"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dev-dependencies.rand]
version = "0.9.2"
[build-dependencies.rustc_version]
version = "0.4.1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(nightly)"]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
incremental = false
strip = true