/ Cargo.toml
Cargo.toml
1 [package] 2 name = "codecrafters-interpreter" 3 version = "0.1.0" 4 authors = ["Codecrafters <hello@codecrafters.io>"] 5 edition = "2021" 6 rust-version = "1.80" 7 8 [dependencies] 9 anyhow = "1.0.68" # error handling 10 bytes = "1.3.0" # helps manage buffers 11 thiserror = "1.0.38" # error handling