blob: 051d175fbc0ef21f5f86f5b8688feeba52ffa99c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = 'rst_renderer'
version = '0.3.1'
authors = ['Philipp A. <flying-sheep@web.de>']
edition = '2018'
description = 'a reStructuredText renderer'
license = 'MIT OR Apache-2.0'
readme = 'README.md'
documentation = 'https://docs.rs/rst_renderer'
homepage = 'https://github.com/flying-sheep/rust-rst'
repository = 'https://github.com/flying-sheep/rust-rst'
[dependencies]
document_tree = { path = '../document_tree', version = '0.3.0' }
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'
|