orgize/Cargo.toml

38 lines
875 B
TOML
Raw Normal View History

2018-09-11 14:09:50 +01:00
[package]
2019-02-06 11:49:44 +00:00
name = "orgize"
2019-08-13 07:30:30 +01:00
version = "0.3.0"
2018-09-11 14:09:50 +01:00
authors = ["PoiScript <poiscript@gmail.com>"]
2019-02-06 11:49:44 +00:00
description = "A Rust library for parsing orgmode files."
repository = "https://github.com/PoiScript/orgize"
2019-02-06 12:50:18 +00:00
readme = "README.md"
2019-02-07 15:37:46 +00:00
edition = "2018"
2019-02-06 11:49:44 +00:00
license = "MIT"
2019-06-26 18:55:08 +01:00
keywords = ["orgmode", "emacs", "parser"]
2018-09-11 14:09:50 +01:00
[package.metadata.docs.rs]
all-features = true
2019-02-06 11:56:44 +00:00
[badges]
travis-ci = { repository = "PoiScript/orgize" }
2019-06-26 14:53:08 +01:00
[features]
2019-08-06 07:29:32 +01:00
default = ["ser"]
ser = ["serde", "serde_indextree"]
2019-06-26 14:53:08 +01:00
2018-09-11 14:09:50 +01:00
[dependencies]
2019-06-26 18:55:08 +01:00
bytecount = "0.5.1"
chrono = { version = "0.4.7", optional = true }
2019-08-06 12:34:27 +01:00
indextree = "4.0.0"
2019-06-26 18:55:08 +01:00
jetscii = "0.4.4"
memchr = "2.2.1"
nom = "5.0.0"
serde = { version = "1.0.98", optional = true, features = ["derive"] }
2019-08-06 12:34:27 +01:00
serde_indextree = { version = "0.2.0", optional = true }
[dev-dependencies]
lazy_static = "1.3.0"
2019-06-26 22:12:41 +01:00
pretty_assertions = "0.6.1"
serde_json = "1.0.40"
slugify = "0.1.0"
2019-08-13 07:30:30 +01:00
syntect = "3.2.1"