1
0
Fork 0

updated deps, added CI config

This commit is contained in:
Ishan Jain 2020-06-01 17:22:34 +05:30
parent aa4e158aab
commit 73f84cc379
No known key found for this signature in database
GPG Key ID: F261A0E73038D89D
4 changed files with 29 additions and 16 deletions

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/rust/tags/
image: "rust:latest"
# Use cargo to test the project
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --all --verbose
cache:
paths:
- cargo/
- target/

24
Cargo.lock generated
View File

@ -4,29 +4,27 @@
name = "either" name = "either"
version = "1.5.3" version = "1.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
[[package]]
name = "interpreter"
version = "0.1.0"
dependencies = [
"itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.8.2" version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
dependencies = [ dependencies = [
"either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "either",
] ]
[[package]] [[package]]
name = "lazy_static" name = "lazy_static"
version = "1.4.0" version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[metadata] [[package]]
"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" name = "monkey-interpreter"
"checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" version = "0.1.0"
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" dependencies = [
"itertools",
"lazy_static",
]

View File

@ -1,9 +1,9 @@
[package] [package]
name = "interpreter" name = "monkey-interpreter"
version = "0.1.0" version = "0.1.0"
authors = ["ishanjain28 <ishanjain28@gmail.com>"] authors = ["ishanjain28 <ishanjain28@gmail.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
lazy_static = "1.4.0" lazy_static = "1.4.0"
itertools = "0.8.2" itertools = "0.8.2"

View File

@ -1 +1 @@
nightly-2020-01-08 nightly-2020-05-31