Update more deps and appveyor config

This commit is contained in:
Vincent Prouillet 2018-06-22 13:39:29 +02:00
parent 2b75fd180b
commit 7f48b9bee8
6 changed files with 1936 additions and 18 deletions

1928
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,29 +1,19 @@
# Based on the "trust" template v0.1.1
# https://github.com/japaric/trust/tree/v0.1.1
os: Visual Studio 2015
os: Visual Studio 2017
environment:
global:
# TODO This is the Rust channel that build jobs will use by default but can be
# overridden on a case by case basis down below
RUST_VERSION: stable
# TODO Update this to match the name of your project.
CRATE_NAME: gutenberg
matrix:
# GNU
- channel: stable
target: x86_64-pc-windows-msvc
TOOLCHAIN: msvc
PLATFORM: x86_64
+ - target: x86_64-pc-windows-msvc
+ RUST_VERSION: 1.25.0
install:
- if "%TOOLCHAIN%" == "msvc" if "%PLATFORM%" == "i686" call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat"
- if "%TOOLCHAIN%" == "msvc" if "%PLATFORM%" == "x86_64" "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
- if "%TOOLCHAIN%" == "msvc" if "%PLATFORM%" == "x86_64" call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
- if "%TOOLCHAIN%" == "msys" set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin

View file

@ -8,7 +8,7 @@ toml = "0.4"
serde = "1"
serde_derive = "1"
chrono = "0.4"
globset = "0.3.0"
globset = "0.4"
errors = { path = "../errors" }
highlighting = { path = "../highlighting"}

View file

@ -18,4 +18,4 @@ front_matter = { path = "../front_matter" }
[dev-dependencies]
tempdir = "0.3"
toml = "0.4"
globset = "0.3.0"
globset = "0.4"

View file

@ -9,7 +9,7 @@ chrono = "0.4"
serde = "1"
serde_derive = "1"
toml = "0.4"
regex = "0.2"
regex = "1"
lazy_static = "1"

View file

@ -5,7 +5,7 @@ authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
[dependencies]
tera = "0.11"
regex = "0.2"
regex = "1"
lazy_static = "1"
syntect = "2"
pulldown-cmark = "0"