fix miscellaneous

This commit is contained in:
freestrings 2019-03-07 14:40:02 +09:00
parent f7b564dcd3
commit 873eebd157
4 changed files with 7 additions and 13 deletions

View File

@ -3,6 +3,11 @@ sudo: false
cache: cargo cache: cargo
branches:
only:
- master
- /^test-.*$/
matrix: matrix:
include: include:

View File

@ -3,7 +3,7 @@ name = "jsonpath_lib"
version = "0.1.1" version = "0.1.1"
authors = ["Changseok Han <freestrings@gmail.com>"] authors = ["Changseok Han <freestrings@gmail.com>"]
description = "JsonPath for Rust and Webassembly - Webassembly Demo: https://freestrings.github.io/jsonpath" description = "JsonPath in Rust and Webassembly - Webassembly Demo: https://freestrings.github.io/jsonpath"
readme = "README.md" readme = "README.md"
keywords = ["library", "jsonpath", "json", "webassembly"] keywords = ["library", "jsonpath", "json", "webassembly"]

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) [2017] [Mark Han] Copyright (c) [2019] [Changseok Han]
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,11 +0,0 @@
install:
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- if not defined RUSTFLAGS rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo test --locked