Commit 92eb546f authored by Servo VCS Sync's avatar Servo VCS Sync
Browse files

No bug - Revendor rust dependencies

parent a927a3f5
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
{"files":{".cargo-ok":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",".travis.yml":"6ef3b45cd0e38b989c77b44ec569f3028d75e9fd804a567deb5e471413436547","Cargo.toml":"6ee2958e4b76d84a3007e5e2add2339488f5e70e96f8726772f9c32112e022c9","LICENSE":"6c5c8b27da74e0dd71048d7f9cc4a4ad230767caa7afa46bc97b7b7443570930","README.md":"f7bfcc3ff3adb1b77112512bb5b3d18a40152549205d7b28783f443f504826e2","src/array.rs":"dca08b8c759bc24a2e53c0d14e86313d6f7500ec3b80b1e8534a400857b87e76","src/lib.rs":"18ca673af87ab41212dd785a0c8c7f2c362ac16e649d2636ba72d7c149911243"},"package":"96e774cadb24c2245225280c6799793f9802b918a58a79615e9490607489a717"}
 No newline at end of file
+0 −0

Empty file deleted.

+0 −55
Original line number Diff line number Diff line
language: rust

sudo: required

matrix:
  include:
    - rust: 1.15.0
    - rust: stable
    - rust: beta
    - rust: nightly
      env:
        - NIGHTLY=1

branches:
  only:
    - master

script:
  - |
      cargo test --verbose &&
      cargo test --verbose --no-default-features &&
      cargo test --verbose --features "use_generic_array" &&
      cargo test --verbose --no-default-features --features "use_generic_array" &&
      ([ "$NIGHTLY" != 1 ] || cargo test --verbose --features "use_union") &&
      ([ "$NIGHTLY" != 1 ] || cargo test --verbose --features "use_union use_generic_array") &&
      ([ "$NIGHTLY" != 1 ] || cargo test --verbose --no-default-features --features "use_union") &&
      ([ "$NIGHTLY" != 1 ] || cargo test --verbose --no-default-features --features "use_union use_generic_array")

before_install:
  - sudo apt-get update

addons:
  apt:
    packages:
      - libcurl4-openssl-dev
      - libelf-dev
      - libdw-dev
      - cmake
      - gcc
      - binutils-dev

after_success: |
  wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
  tar xzf master.tar.gz &&
  cd kcov-master &&
  mkdir build &&
  cd build &&
  cmake .. &&
  make &&
  sudo make install &&
  cd ../.. &&
  rm -rf kcov-master &&
  for file in target/debug/arraydeque-*; do mkdir -p "target/cov/$(basename $file)"; kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
  bash <(curl -s https://codecov.io/bash) &&
  echo "Uploaded code coverage"
+0 −39
Original line number Diff line number Diff line
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "arraydeque"
version = "0.2.3"
authors = ["goandylok"]
description = "A ring buffer with a fixed capacity, can be stored on the stack."
homepage = "https://github.com/goandylok/arraydeque"
documentation = "https://docs.rs/arraydeque"
keywords = ["ring", "circular", "stack", "array", "no_std"]
license = "MIT/Apache-2.0"
repository = "https://github.com/goandylok/arraydeque"
[dependencies.nodrop]
version = "0.1.8"
default-features = false

[dependencies.odds]
version = "0.2.12"
default-features = false

[dependencies.generic-array]
version = "0.5.1"
optional = true

[features]
use_generic_array = ["generic-array"]
use_union = ["nodrop/use_union"]
default = ["std"]
std = ["odds/std", "nodrop/std"]
+0 −21
Original line number Diff line number Diff line
The MIT License (MIT)

Copyright (c) 2016 goandylok

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading