blob: 396319bd44f2100f3f98588b777fc9007972b7d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
[package]
name = "codecrafters-redis"
version = "0.1.0"
authors = ["Codecrafters <hello@codecrafters.io>"]
edition = "2021"
[dependencies]
anyhow = "1.0.59" # error handling
bytes = "1.3.0" # helps manage buffers
thiserror = "1.0.32" # error handling
tokio = { version = "1.23.0", features = ["full"] } # async networking
|