blob: aca1ff04e0cec474e09c6501d82ab68e051d4b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[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
regex = "1.11.1"
thiserror = "1.0.32" # error handling
tokio = { version = "1.23.0", features = ["full"] } # async networking
|