summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
AgeCommit message (Collapse)Author
2019-09-15Pin syntectSebastian Wiesner
See https://github.com/rust-onig/rust-onig/issues/109 See GH-90
2019-08-03Enable SIMD in pulldown-cmarkSebastian Wiesner
2019-07-30Update to pulldown-cmark 0.5.xSebastian Wiesner
2019-07-15Bump ansi_term from 0.11.0 to 0.12.0dependabot-preview[bot]
Bumps [ansi_term](https://github.com/ogham/rust-ansi-term) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/ogham/rust-ansi-term/releases) - [Commits](https://github.com/ogham/rust-ansi-term/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-04-14Do not sign release commitsSebastian Wiesner
2019-04-08Bump clap from 2.32.0 to 2.33.0dependabot[bot]
Bumps [clap](https://github.com/clap-rs/clap) from 2.32.0 to 2.33.0. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/commits) Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-03-30Bump version to 0.13.1-preSebastian Wiesner
2019-03-30Release 0.13.0Sebastian Wiesner
2019-03-24Update to pulldown cmark 0.4Sebastian Wiesner
2019-03-18Bump pulldown-cmark from 0.2.0 to 0.3.0dependabot[bot]
Bumps [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) from 0.2.0 to 0.3.0. - [Release notes](https://github.com/raphlinus/pulldown-cmark/releases) - [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.2.0...v0.3.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-25Bump pretty_assertions from 0.5.1 to 0.6.1dependabot[bot]
Bumps [pretty_assertions](https://github.com/colin-kiegel/rust-pretty-assertions) from 0.5.1 to 0.6.1. - [Release notes](https://github.com/colin-kiegel/rust-pretty-assertions/releases) - [Commits](https://github.com/colin-kiegel/rust-pretty-assertions/compare/v0.5.1...v0.6.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-11Remove Travis CI badge from Cargo manifestSebastian Wiesner
Travis CI com isn't supported yet, see https://github.com/rust-lang/crates.io/issues/1392
2019-01-22Use gethostname crateSebastian Wiesner
2018-12-24Bump version to 0.12.2-preSebastian Wiesner
2018-12-24Release 0.12.1Sebastian Wiesner
2018-12-20Bump version to 0.12.1-preSebastian Wiesner
2018-12-20Release 0.12.0Sebastian Wiesner
2018-12-07cargo fix --edition-idiomsSebastian Wiesner
2018-12-07Enable Rust 2018Sebastian Wiesner
2018-11-13Always set hostname for file:// URLsSebastian Wiesner
Fixes GH-42
2018-11-13Update dependenciesSebastian Wiesner
2018-11-02Add remote resoures backSebastian Wiesner
2018-10-30Make resource use optionalSebastian Wiesner
Fix compiler warnings with --no-default-features by removing unused code.
2018-10-30Refactor terminal representation againSebastian Wiesner
Remove Terminal trait in favour of a TerminalCapabilities struct, and explicitly pattern match over supported capabilities while rendering. This removes boxing and dynamic dispatch, and makes different features and internal behaviour like HTTP access more explicit. We now also explicitly check what and how certain features are supported while rendering; this gets rids of the NotSupportedError thing and the kludge to handle it in a special way which I never quite liked. Also simply how we check for access to resources: Remove the resource enum and instead use Url directly. Via the scheme an URL already tells us whether it’s local or not, so we just rely on the scheme and file path conversion now. This makes resolving references in markdown files and checking access much simpler.
2018-10-27Replace maitenance badge w/ license badgeSebastian Wiesner
[ci skip]
2018-10-25Update all dependenciesSebastian Wiesner
2018-10-25Bump version to 0.11.1-preSebastian Wiesner
2018-10-25Release 0.11.0Sebastian Wiesner
2018-09-24Start to write a few basic formatting testsSebastian Wiesner
2018-09-24Always print coloursSebastian Wiesner
2018-09-09Bump version to 0.10.2-preSebastian Wiesner
2018-09-09Release 0.10.1Sebastian Wiesner
2018-09-09Bump version to 0.10.1-preSebastian Wiesner
2018-09-09Release 0.10.0Sebastian Wiesner
2018-09-09Make reqwest dependency optionalSebastian Wiesner
2018-09-09Remove vec_map dependencySebastian Wiesner
I doubt we'll ever notice the slight performance penalty.
2018-09-02Use ansi_term crate for stylesSebastian Wiesner
2018-08-26Bump version to 0.9.3-preSebastian Wiesner
2018-08-26Release 0.9.2Sebastian Wiesner
2018-08-26Bump version to 0.9.2-preSebastian Wiesner
2018-08-26Release 0.9.1Sebastian Wiesner
2018-08-26Bump version to 0.9.1-preSebastian Wiesner
2018-08-26Release 0.9.0Sebastian Wiesner
2018-08-26Enable all terminal emulators by defaultSebastian Wiesner
We can't enable features in build.rs, see https://github.com/rust-lang/cargo/issues/5499, and cargo doesn't support target-specific default features, see https://github.com/rust-lang/cargo/issues/1197. Essentially we build as we used to do before we added features for terminal emulators. Downsides are more dependencies than needed—you don’t need iterm2 on Linux after all—and Windows doesn't build with default features at all. This reverts commit 544943adf3befc5051d47847dc59c6071af7675b.
2018-08-25Only build supported terminalsSebastian Wiesner
2018-08-25Redesign terminal supportSebastian Wiesner
Replace the closed enum with an open Terminal trait and dynamic dispatch. Makes it easier to add new terminals, and to feature-switch terminals at compile time for better platform support.
2018-08-24Only depend on immeta when neededSebastian Wiesner
2018-08-24Build on WindowsSebastian Wiesner
2018-04-24Add documentation in Cargo.tomlMatthias Beyer
As this seems to be usable as a library as well, we should note the documentation location in the Cargo.toml file!
2018-04-04Update all dependenciesSebastian Wiesner