aboutsummaryrefslogtreecommitdiffstats
path: root/rst/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'rst/Cargo.toml')
-rw-r--r--rst/Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/rst/Cargo.toml b/rst/Cargo.toml
new file mode 100644
index 0000000..3d1d6f2
--- /dev/null
+++ b/rst/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = 'rst'
+version = '0.2.0'
+authors = ['Philipp A. <flying-sheep@web.de>']
+edition = '2018'
+description = 'a reStructuredText parser and renderer for the command line'
+license = 'MIT OR Apache-2.0'
+
+documentation = 'https://flying-sheep.github.io/rust-rst'
+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' }
+
+quicli = '0.4.0'
+structopt = '0.2.15'
+clap = '2.32.0'