blob: 321f7f7cef0a79851ed107bbd0a05ac87036ddc0 [file] [log] [blame]
codecrafters-bot67061582024-01-10 17:35:39 +00001# DON'T EDIT THIS!
2#
3# Codecrafters relies on this file being intact to run tests successfully. Any changes
4# here will not reflect when CodeCrafters tests your code, and might even cause build
5# failures.
6#
7# DON'T EDIT THIS!
8[package]
9name = "http-server-starter-rust"
10version = "0.1.0"
11authors = ["Codecrafters <hello@codecrafters.io>"]
12edition = "2021"
13
14# DON'T EDIT THIS!
15#
16# Codecrafters relies on this file being intact to run tests successfully. Any changes
17# here will not reflect when CodeCrafters tests your code, and might even cause build
18# failures.
19#
20# DON'T EDIT THIS!
21[dependencies]
22anyhow = "1.0.59" # error handling
23bytes = "1.3.0" # helps manage buffers
24thiserror = "1.0.38" # error handling
25tokio = { version = "1.23.0", features = ["full"] } # async networking
26nom = "7.1.3" # parser combinators
27itertools = "0.11.0" # General iterator helpers
28
29[dev-dependencies]
30pretty_assertions = "1.3.0" # nicer looking assertions
31