-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
98 additions
and
69 deletions.
There are no files selected for viewing
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,18 +1,17 @@ | ||
language: rust | ||
sudo: false | ||
|
||
matrix: | ||
include: | ||
- rust: stable | ||
- rust: beta | ||
- rust: nightly | ||
script: | ||
- cargo test | ||
- cargo test --features nightly | ||
|
||
rust: | ||
# - nightly-2018-07-16 | ||
- nightly | ||
|
||
script: | ||
- cargo test --verbose && cargo build --verbose && cargo install | ||
script: | | ||
cargo build --verbose && | ||
cargo test --verbose && | ||
cargo doc --verbose | ||
branches: | ||
only: | ||
- staging # bors r+ | ||
- trying # bors try | ||
- master |
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,6 +1,6 @@ | ||
[package] | ||
name = "markdown_tools" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Ramon Buckland <[email protected]>"] | ||
|
||
[lib] | ||
|
@@ -17,4 +17,4 @@ serde_yaml = "0.7" | |
indexmap = "1.0.1" | ||
linked-hash-map = "0.5.1" | ||
docopt = "1.0.0" | ||
calamine = "0.14" | ||
calamine = "0.14" |
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
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
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,7 +1,7 @@ | ||
use indexmap::IndexSet; | ||
use std::collections::BTreeMap; | ||
use linked_hash_map::LinkedHashMap; | ||
|
||
pub type TableRow<K, V> = BTreeMap<K, V>; | ||
pub type TableRow<K, V> = LinkedHashMap<K, V>; | ||
pub type Table<K, V> = Vec<TableRow<K, V>>; | ||
pub type MultiTables<K, V> = Vec<Table<K, V>>; | ||
pub type Headers = IndexSet<String>; |
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