orgize 0.5.0

A Rust library for parsing orgmode files.
Documentation
[package]
name = "orgize"
version = "0.5.0"
authors = ["PoiScript <poiscript@gmail.com>"]
description = "A Rust library for parsing orgmode files."
repository = "https://github.com/PoiScript/orgize"
readme = "README.md"
edition = "2018"
license = "MIT"
keywords = ["orgmode", "emacs", "parser"]

[package.metadata.docs.rs]
all-features = true

[badges]
travis-ci = { repository = "PoiScript/orgize" }

[features]
default = ["ser"]
ser = ["serde", "serde_indextree"]

[dependencies]
bytecount = "0.6.0"
chrono = { version = "0.4.9", optional = true }
indextree = "4.0.0"
jetscii = "0.4.4"
lazy_static = "1.4.0"
memchr = "2.2.1"
# we don't need to parse any float number, so lexical crate is redundant
nom = { version = "5.0.1", default-features = false, features = ["std"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde_indextree = { version = "0.2.0", optional = true }
syntect = { version = "3.3.0", optional = true }

[dev-dependencies]
pretty_assertions = "0.6.1"
serde_json = "1.0.41"
slugify = "0.1.0"