orgize/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2019-10-10 03:44:59 +01:00
[package]
name = "orgize"
2020-05-09 18:56:04 +01:00
version = "0.8.4"
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", "indexmap/serde-1"]
2019-10-10 03:44:59 +01:00
[dependencies]
bytecount = "0.6.0"
2020-04-06 09:12:52 +01:00
chrono = { version = "0.4.11", optional = true }
2019-10-10 03:44:59 +01:00
indextree = "4.0.0"
jetscii = "0.4.4"
lazy_static = "1.4.0"
2020-04-06 09:12:52 +01:00
memchr = "2.3.3"
2019-10-10 03:44:59 +01:00
# we don't need to parse any float number, so lexical crate is redundant
2020-04-06 09:12:52 +01:00
nom = { version = "5.1.1", default-features = false, features = ["std"] }
serde = { version = "1.0.106", optional = true, features = ["derive"] }
2019-10-10 03:44:59 +01:00
serde_indextree = { version = "0.2.0", optional = true }
2020-04-06 09:12:52 +01:00
syntect = { version = "4.1.0", optional = true }
indexmap = { version = "1.3.2", features = ["serde-1"], optional = true}
2019-10-10 03:44:59 +01:00
[dev-dependencies]
pretty_assertions = "0.6.1"
2020-04-06 09:12:52 +01:00
serde_json = "1.0.51"
2019-10-10 03:44:59 +01:00
slugify = "0.1.0"