orgize/Cargo.toml

39 lines
1 KiB
TOML
Raw Normal View History

2019-10-10 03:44:59 +01:00
[package]
name = "orgize"
2019-10-30 13:15:09 +00:00
version = "0.6.0"
2019-10-10 03:44:59 +01:00
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"] }
2019-10-30 13:15:09 +00:00
serde = { version = "1.0.102", optional = true, features = ["derive"] }
2019-10-10 03:44:59 +01:00
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"