aboutsummaryrefslogtreecommitdiffstats
path: root/document_tree/Cargo.toml
diff options
context:
space:
mode:
authorPhilipp A2019-12-26 23:01:00 +0100
committerPhilipp A2019-12-26 23:36:48 +0100
commita0e3c53758d526bb418c068bce1c99fa5a597ed3 (patch)
treee640238b011a9ea7806ccccaf1a435e4b371a376 /document_tree/Cargo.toml
parent7018f5d3c42f18b6c83f398db9f1915361a7c679 (diff)
downloadrust-rst-a0e3c53758d526bb418c068bce1c99fa5a597ed3.tar.bz2
Split into smaller crates
Diffstat (limited to 'document_tree/Cargo.toml')
-rw-r--r--document_tree/Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/document_tree/Cargo.toml b/document_tree/Cargo.toml
new file mode 100644
index 0000000..09e827e
--- /dev/null
+++ b/document_tree/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = 'document_tree'
+version = '0.2.0'
+authors = ['Philipp A. <flying-sheep@web.de>']
+description = 'reStructuredText’s DocumenTree representation'
+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'
+
+edition = '2018'
+
+[dependencies]
+failure = '0.1.6'
+regex = '1.3.1'
+url = '2.1.0'
+serde = '1.0.104'
+serde_derive = '1.0.104'