-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Library-ify and add support for default number types (#4)
* Use GitHub Releases for releases * Refactor to use cli.yaml * Fix compiler warnings * Refactor: use as lib, and custom default number type * Fix link in docs * Update README * Update README with links to crates.io and docs.rs * Add publish_crate step to publish.yml * Update README title
- Loading branch information
Showing
11 changed files
with
1,059 additions
and
667 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ authors = ["Ulysse Carion <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
clap = "2.33" | ||
jtd = "0.1.4" | ||
clap = { version = "2.33.3", features = ["yaml"] } | ||
jtd = "0.3.1" | ||
serde_json = "1" | ||
failure = "0.1" | ||
anyhow = "1.0" | ||
chrono = "0.4" |
Oops, something went wrong.