foobar_db 0.0.1

FoobarDB is an in-memory database implemented in Rust that supports the RESP protocol.
Documentation
[[bin]]
name = "foobar_db"
path = "src/bin/server.rs"

[build-dependencies.vergen]
features = ["build", "cargo", "rustc", "si"]
version = "9.0.1"

[dependencies.anyhow]
version = "1.0.93"

[dependencies.bytes]
version = "1.8.0"

[dependencies.clap]
features = ["derive"]
version = "4.5.21"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.num_cpus]
version = "1.13.0"

[dependencies.socket2]
version = "0.5"

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

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.vergen]
features = ["build", "cargo", "rustc", "si"]
version = "9.0.1"

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.test-case]
version = "3.1"

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

[package]
authors = ["HanLin Chai <take3812@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
description = "FoobarDB is an in-memory database implemented in Rust that supports the RESP protocol. "
documentation = "https://docs.rs/stream_resp/latest/foobar_db/"
edition = "2021"
license = "MIT"
name = "foobar_db"
readme = "README.md"
repository = "https://github.com/daydaydrunk/foobar_db"
version = "0.0.1"

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

[profile.release.package."*"]
opt-level = 3

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