54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[package]
|
|
name = "orgize"
|
|
version = "0.10.0-alpha.1"
|
|
authors = ["PoiScript <poiscript@gmail.com>"]
|
|
description = "A Rust library for parsing org-mode files."
|
|
repository = "https://github.com/PoiScript/orgize"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
keywords = ["orgmode", "org-mode", "emacs", "parser"]
|
|
exclude = ["/wasm", "/.github"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[badges]
|
|
travis-ci = { repository = "PoiScript/orgize" }
|
|
|
|
[features]
|
|
default = []
|
|
indexmap = ["dep:indexmap"]
|
|
chrono = ["dep:chrono"]
|
|
|
|
[workspace]
|
|
members = [".", "./wasm"]
|
|
|
|
[dependencies]
|
|
bytecount = "0.6"
|
|
chrono = { version = "0.4", optional = true }
|
|
indexmap = { version = "1.9", optional = true }
|
|
jetscii = "0.5"
|
|
memchr = "2.5"
|
|
nom = { version = "7.1", default-features = false, features = ["std"] }
|
|
rowan = "0.15"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4"
|
|
pretty_assertions = "1.3"
|
|
insta = "1.29"
|
|
serde_json = "1.0"
|
|
slugify = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
|
|
|
[profile.dev.package]
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
|
|
[[bench]]
|
|
name = "parse"
|
|
harness = false
|