diff options
| author | Philipp A | 2019-12-26 23:41:08 +0100 |
|---|---|---|
| committer | Philipp A | 2019-12-26 23:45:57 +0100 |
| commit | 0f1a3e3578b934454a41a31eff15c23622719a67 (patch) | |
| tree | 7a4677c6fc4f0b89f22574b1c4a37ab683e3857b | |
| parent | a0e3c53758d526bb418c068bce1c99fa5a597ed3 (diff) | |
| download | rust-rst-0.3.0.tar.bz2 | |
v0.3.0v0.3.0
| -rw-r--r-- | document_tree/Cargo.toml | 2 | ||||
| -rw-r--r-- | parser/Cargo.toml | 4 | ||||
| -rw-r--r-- | renderer/Cargo.toml | 4 | ||||
| -rw-r--r-- | rst/Cargo.toml | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/document_tree/Cargo.toml b/document_tree/Cargo.toml index 09e827e..afbce73 100644 --- a/document_tree/Cargo.toml +++ b/document_tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'document_tree' -version = '0.2.0' +version = '0.3.0' authors = ['Philipp A. <flying-sheep@web.de>'] description = 'reStructuredText’s DocumenTree representation' license = 'MIT OR Apache-2.0' diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 22f2490..997cc35 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rst_parser' -version = '0.2.0' +version = '0.3.0' authors = ['Philipp A. <flying-sheep@web.de>'] edition = '2018' description = 'a reStructuredText parser' @@ -11,7 +11,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst' repository = 'https://github.com/flying-sheep/rust-rst.git' [dependencies] -document_tree = { path = '../document_tree' } +document_tree = { path = '../document_tree', version = '0.3.0' } pest = '2.1.2' pest_derive = '2.1.0' diff --git a/renderer/Cargo.toml b/renderer/Cargo.toml index bc80adc..d48dd34 100644 --- a/renderer/Cargo.toml +++ b/renderer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rst_renderer' -version = '0.2.0' +version = '0.3.0' authors = ['Philipp A. <flying-sheep@web.de>'] edition = '2018' description = 'a reStructuredText renderer' @@ -11,7 +11,7 @@ homepage = 'https://github.com/flying-sheep/rust-rst' repository = 'https://github.com/flying-sheep/rust-rst.git' [dependencies] -document_tree = { path = '../document_tree' } +document_tree = { path = '../document_tree', version = '0.3.0' } failure = '0.1.6' serde_json = '1.0.44' diff --git a/rst/Cargo.toml b/rst/Cargo.toml index 3d1d6f2..3c58792 100644 --- a/rst/Cargo.toml +++ b/rst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rst' -version = '0.2.0' +version = '0.3.0' authors = ['Philipp A. <flying-sheep@web.de>'] edition = '2018' description = 'a reStructuredText parser and renderer for the command line' @@ -11,8 +11,8 @@ homepage = 'https://github.com/flying-sheep/rust-rst' repository = 'https://github.com/flying-sheep/rust-rst.git' [dependencies] -rst_renderer = { path = '../renderer' } -rst_parser = { path = '../parser' } +rst_renderer = { path = '../renderer', version = '0.3.0' } +rst_parser = { path = '../parser', version = '0.3.0' } quicli = '0.4.0' structopt = '0.2.15' |
