-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies * Incorporate changes due tokio reorg & hyper response API change * Fix startup failure where md file in current workdir. Root cause was PathBuf::parent() returning an Option<empty String> instead of None when providing a relative path to something in the working directory. The code now takes this (unintuitive) behaviour into account. * Bump patch version
- Loading branch information
1 parent
a39722f
commit e39bc06
Showing
2 changed files
with
49 additions
and
40 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,7 +1,7 @@ | ||
[package] | ||
name = "grup" | ||
description = "an offline github markdown previewer" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["razorheadfx <\"[email protected]\">"] | ||
keywords = ["grip", "offline", "markdown", "github", "preview"] | ||
categories = ["command-line-utilities", "visualization"] | ||
|
@@ -13,20 +13,16 @@ license-file = "LICENSE" | |
[dependencies] | ||
# logging | ||
log = "0.4" | ||
env_logger = "0.6" | ||
env_logger = "0.9" | ||
# cmdline parsing | ||
structopt = "0.3" | ||
# md parser | ||
comrak = "0.6" | ||
comrak = "0.12" | ||
# monitor files | ||
notify = "5.0.0-pre.2" | ||
notify = "5.0.0-pre.13" | ||
# http server | ||
hyper = "0.13.0-alpha.4" | ||
# tokio = { version = "0.2", features = ["full"] } | ||
tokio-fs = "0.2.0-alpha.6" | ||
tokio-io = "0.2.0-alpha.6" | ||
tokio-sync = "0.2.0-alpha.6" | ||
tokio = { version = "=0.2.0-alpha.6" } | ||
hyper = { version = "0.14", features = ["full"] } | ||
tokio = { version = "1.13", features = ["full"] } | ||
|
||
[[bin]] | ||
name = "grup" | ||
|
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