-
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.
Merge pull request #8 from inosion/cmdline_fix
clarified help + json
- Loading branch information
Showing
8 changed files
with
49 additions
and
18 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,8 +1,6 @@ | ||
name: Publish | ||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- v* | ||
jobs: | ||
|
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 = "madato" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
authors = ["Ramon Buckland <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "A library and command line tool for working tabular data (XLS, ODS, CSV, YAML), and Markdown" | ||
|
@@ -20,7 +20,8 @@ crate-type = ["rlib"] | |
regex = "1" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde_yaml = "0.7.5" | ||
serde_yaml = "0.8" | ||
serde_json = "1.0" | ||
indexmap = "1.0.1" | ||
|
||
[dependencies.linked-hash-map] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "madato_cal" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
authors = ["Ramon Buckland <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "XLS, ODS Support for the madato lib and command line" | ||
|
@@ -15,4 +15,4 @@ path = "src/lib.rs" | |
|
||
[dependencies] | ||
madato = { path = "../madato/" } | ||
calamine = "0.14" | ||
calamine = "0.18" |
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 = "madato_cmd" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
authors = ["Ramon Buckland <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "Command Line Binary for madato" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "madato_wasm" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
authors = ["Ramon Buckland <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "JS API WASM Binding for madato" | ||
|