Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Add travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomusdrw committed Sep 11, 2017
1 parent dc9ec3e commit 17e4344
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
sudo: false
language: rust
branches:
only:
- master

cache: cargo

matrix:
fast_finish: false
include:
- rust: stable
- rust: beta
- rust: nightly
allow_failures:
- rust: nightly

script:
- cargo build
- cargo test
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
[package]
name = "resty"
version = "0.1.0"
description = "A simple JSON REST-API framework."
homepage = "https://github.com/tomusdrw/resty"
repository = "https://github.com/tomusdrw/resty"
readme = "README.md"
documentation = "https://docs.rs/resty"
license = "MIT"
keywords = ["hyper", "http", "rest", "json", "api"]
authors = ["Tomasz Drwięga <[email protected]>"]

categories = [
"asynchronous",
"web-programming::http-server",
]

[dependencies]
arrayvec = "0.4"
futures = "0.1"
Expand Down

0 comments on commit 17e4344

Please sign in to comment.