aboutsummaryrefslogtreecommitdiffstats
path: root/renderer/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'renderer/Cargo.toml')
-rw-r--r--renderer/Cargo.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/renderer/Cargo.toml b/renderer/Cargo.toml
new file mode 100644
index 0000000..bc80adc
--- /dev/null
+++ b/renderer/Cargo.toml
@@ -0,0 +1,23 @@
+[package]
+name = 'rst_renderer'
+version = '0.2.0'
+authors = ['Philipp A. <flying-sheep@web.de>']
+edition = '2018'
+description = 'a reStructuredText renderer'
+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]
+document_tree = { path = '../document_tree' }
+
+failure = '0.1.6'
+serde_json = '1.0.44'
+serde-xml-rs = '0.3.1'
+
+[dev-dependencies]
+rst_parser = { path = '../parser' }
+
+pretty_assertions = '0.6.1'