-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #408 from JohanLorenzo/add-taxonomy
Add taxonomy commits from https://github.com/fxbox/taxonomy/
- Loading branch information
Showing
27 changed files
with
10,072 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
target | ||
Cargo.lock | ||
.*.sw* | ||
.cargo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
language: rust | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libcurl4-openssl-dev | ||
- libelf-dev | ||
- libdw-dev | ||
|
||
script: | ||
- cargo build | ||
# FIXME: We currently execute unit tests twice. Once with and the other time, | ||
# without the dead code in the binary. | ||
- cargo test -- --nocapture | ||
- $TRAVIS_BUILD_DIR/tools/execute-unit-tests-with-coverage | ||
|
||
rust: | ||
- nightly-2016-04-10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[package] | ||
name = "foxbox_taxonomy" | ||
version = "0.1.2" | ||
authors = ["David Rajchenbach-Teller <dteller@mozilla.com>"] | ||
|
||
[dependencies] | ||
chrono = "0.2.19" | ||
clippy = "0.0.63" | ||
#clippy = {git = "https://github.com/Manishearth/rust-clippy.git", rev = "c1c935d"} | ||
lazy_static = "^0.1" | ||
libc = "0.2.9" | ||
log = "0.3" | ||
rusqlite = "0.6.0" | ||
serde = "0.7.0" | ||
serde_json = "0.7.0" | ||
serde_macros = "0.7.0" | ||
string_cache = "^0.2" | ||
sublock = "^0.1" | ||
transformable_channels = "^0.1" | ||
|
||
[dev-dependencies] | ||
assert_matches = "1.0.0" |
Oops, something went wrong.