1
0

Merge pull request #5 from codecrafters-io/sync

Sync with languages repo
This commit is contained in:
Paul Kuruvilla 2021-12-17 12:47:24 +00:00 committed by GitHub
commit cdc4f28f60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 4 deletions

16
Cargo.lock generated
View File

@ -17,6 +17,21 @@ version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "itertools"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
[[package]]
name = "memchr"
version = "2.4.1"
@ -107,6 +122,7 @@ name = "sqlite-starter-rust"
version = "0.1.0"
dependencies = [
"anyhow",
"itertools",
"nom",
"peg",
"regex",

View File

@ -19,7 +19,8 @@ edition = "2018"
#
# DON'T EDIT THIS!
[dependencies]
anyhow = "1.0.43" # for easy error handling
nom = "7.0.0" # for parsing
peg = "0.7.0" # for parsing
regex = "1.5.4" # for parsing
anyhow = "1.0.43" # for easy error handling
itertools = "0.10.3" # useful iterator extensions
nom = "7.0.0" # for parsing
peg = "0.7.0" # for parsing
regex = "1.5.4" # for parsing