tinyredis 1.0.0

A Redis-compatible server written in Rust. Uses RESP2, persists writes to an append-only file, and accepts connections from any standard Redis client.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "tinyredis"
version = "1.0.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Redis-compatible server written in Rust. Uses RESP2, persists writes to an append-only file, and accepts connections from any standard Redis client."
readme = "README.md"
keywords = [
    "redis",
    "server",
    "database",
    "resp",
    "cache",
]
categories = [
    "command-line-utilities",
    "database-implementations",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/BIRSAx2/tiny-redis"

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

[[bin]]
name = "tinyredis"
path = "src/main.rs"

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

[dependencies.bytes]
version = "1.11.1"

[dependencies.chrono]
version = "0.4"

[dependencies.ordered-float]
version = "5.1.0"

[dependencies.rust_decimal]
version = "1"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.50.0"
features = ["full"]

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]

[dev-dependencies.redis]
version = "1.0.5"
features = ["tokio-comp"]

[dev-dependencies.tokio]
version = "1.50.0"
features = ["full"]