aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 9473c18adcb4e46fea8525b97ea7286e1a2a6555 (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
25
26
27
28
29
30
31
32
33
34
[package]
name = 'rst'
version = '0.2.0'
authors = [ 'Phil Schaf <flying-sheep@web.de>' ]

description = 'a reStructuredText parser and 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'

edition = '2018'

[lib]
name = "rst"
path = "src/lib.rs"

[[bin]]
name = "rst"
path = "src/bin.rs"

[dependencies]
url = '1.7.2'
bitflags = '1.0.4'
unicode_categories = '0.1.1'
pest        = { git = 'https://github.com/flying-sheep/pest', branch = 'peek-slice' }
pest_derive = { git = 'https://github.com/flying-sheep/pest', branch = 'peek-slice' }
serde = '1.0.80'
serde_json = "1.0.33"

quicli = '0.3.1'
structopt = '0.2.13'
clap = '2.32.0'