Browse Source

Update more deps and appveyor config

index-subcmd
Vincent Prouillet 5 years ago
parent
commit
7f48b9bee8
6 changed files with 1936 additions and 18 deletions
  1. +1928
    -0
      Cargo.lock
  2. +4
    -14
      appveyor.yml
  3. +1
    -1
      components/config/Cargo.toml
  4. +1
    -1
      components/content/Cargo.toml
  5. +1
    -1
      components/front_matter/Cargo.toml
  6. +1
    -1
      components/rendering/Cargo.toml

+ 1928
- 0
Cargo.lock
File diff suppressed because it is too large
View File


+ 4
- 14
appveyor.yml 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


+ 1
- 1
components/config/Cargo.toml 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"}

+ 1
- 1
components/content/Cargo.toml 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"

+ 1
- 1
components/front_matter/Cargo.toml 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"




+ 1
- 1
components/rendering/Cargo.toml 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"


Loading…
Cancel
Save