ignix 0.3.2

High-performance Redis-compatible key-value store built with Rust
Documentation
[[bench]]
harness = false
name = "exec"
path = "benches/exec.rs"

[[bench]]
harness = false
name = "resp"
path = "benches/resp.rs"

[[bin]]
name = "ignix"
path = "src/bin/ignix.rs"

[dependencies.ahash]
version = "0.8"

[dependencies.anyhow]
version = "1"

[dependencies.bytes]
version = "1"

[dependencies.crossbeam]
version = "0.8"

[dependencies.dashmap]
version = "6"

[dependencies.env_logger]
version = "0.11"

[dependencies.hashbrown]
version = "0.14"

[dependencies.log]
version = "0.4"

[dependencies.mimalloc]
default-features = false
version = "0.1"

[dependencies.mio]
features = ["net", "os-poll"]
version = "0.8"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rustc-hash]
version = "1"

[dependencies.smol_str]
version = "0.3.4"

[dependencies.socket2]
features = ["all"]
version = "0.5"

[dependencies.thiserror]
version = "1"

[dependencies.xxhash-rust]
features = ["xxh3"]
version = "0.8"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.rand]
version = "0.8"

[[example]]
name = "client"
path = "examples/client.rs"

[lib]
name = "ignix"
path = "src/lib.rs"

[package]
authors = ["CycleChain.io <hello@cyclechain.io> (https://cyclechain.io)", "Fatih Mert Doğancan <fatih.dogancan@cyclechain.io> (https://github.com/fatihmert)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "caching", "network-programming"]
description = "High-performance Redis-compatible key-value store built with Rust"
documentation = "https://docs.rs/ignix"
edition = "2021"
homepage = "https://github.com/CycleChain/ignix"
keywords = ["redis", "database", "key-value", "cache", "server"]
license = "MIT"
name = "ignix"
readme = "README.md"
repository = "https://github.com/CycleChain/ignix"
version = "0.3.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true

[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.6"

[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "linux")'.dependencies.slab]
version = "0.4"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "large_payloads"
path = "tests/large_payloads.rs"

[[test]]
name = "resp"
path = "tests/resp.rs"