From b0437cf635d57c0467b0da775a8594af8d2d7a46 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 26 Apr 2018 22:26:16 +0200 Subject: Event builder (#21) * Add EventBuilder * Add simple test for building an event * Remove unused import * fixup! Add simple test for building an event * fixup! Remove unused import * Fix: build and test with all features enabled * Make builder API typed * Add helper to build new empty ICalendar object * Add ::from_raw() for helper types, make ::new() pub * Redesign builder to have chainable with_foo() functions and in-place mutating setters * Dont prefix getters with get_ to be more consistent with the vcard API * fixup! Redesign builder to have chainable with_foo() functions and in-place mutating setters * fixup! Dont prefix getters with get_ to be more consistent with the vcard API * fixup! Dont prefix getters with get_ to be more consistent with the vcard API * fixup! Dont prefix getters with get_ to be more consistent with the vcard API --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 1dbeecc..9430a0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ rust: - beta script: - - cargo build --features timeconversions - - cargo test --features timeconversions + - cargo build --all-features + - cargo test --all-features cache: cargo: true -- cgit v1.2.3