53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [".", "./wasm"]
|
|
|
|
[package]
|
|
name = "orgize"
|
|
version = "0.10.0-alpha.10"
|
|
authors = ["PoiScript <poiscript@gmail.com>"]
|
|
repository = "https://github.com/PoiScript/orgize"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "A Rust library for parsing org-mode files."
|
|
readme = "README.md"
|
|
keywords = ["orgmode", "org-mode", "emacs", "parser"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
default = []
|
|
indexmap = ["dep:indexmap"]
|
|
chrono = ["dep:chrono"]
|
|
tracing = ["dep:tracing"]
|
|
syntax-org-fc = []
|
|
|
|
[dependencies]
|
|
bytecount = "0.6"
|
|
cfg-if = "1.0.0"
|
|
chrono = { version = "0.4", optional = true }
|
|
indexmap = { version = "2.1", optional = true }
|
|
jetscii = "0.5"
|
|
memchr = "2.5"
|
|
nom = { version = "7.1", default-features = false, features = ["std"] }
|
|
rowan = "0.15"
|
|
tracing = { version = "0.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
insta = "1.29"
|
|
slugify = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
|
|
|
[[bench]]
|
|
name = "parse"
|
|
harness = false
|
|
|
|
[[example]]
|
|
name = "parse"
|
|
required-features = ["tracing"]
|
|
|
|
[profile.dev.package]
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|