summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--LICENSE.txt2
-rw-r--r--README.md2
-rw-r--r--appveyor.yml2
4 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 725fa91..e7d1436 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,6 +14,8 @@ script:
- cargo test --verbose --no-default-features
- cargo build --verbose
- cargo test --verbose
+- cargo build --verbose --all-features
+- cargo test --verbose --all-features
env:
global:
- RUSTFLAGS="-C link-dead-code"
diff --git a/LICENSE.txt b/LICENSE.txt
index 5f2eb82..a1f361b 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2015, Pierre-Henri Symoneaux
+Copyright (c) 2019, Pierre-Henri Symoneaux
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/README.md b/README.md
index dca2c2a..d702cf8 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
A formatted and aligned table printer library for [Rust](https://www.rust-lang.org).
-*Copyright © 2018 Pierre-Henri Symoneaux*
+*Copyright © 2019 Pierre-Henri Symoneaux*
> THIS SOFTWARE IS DISTRIBUTED WITHOUT ANY WARRANTY <br>
> Check LICENSE.txt file for more information. <br>
diff --git a/appveyor.yml b/appveyor.yml
index f653c4b..7f72c1e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -15,7 +15,9 @@ install:
build_script:
- cargo build --verbose
- cargo build --verbose --no-default-features
+ - cargo build --verbose --all-features
test_script:
- cargo test --verbose
- cargo test --verbose --no-default-features
+ - cargo test --verbose --all-features