orgize/Cargo.toml
dependabot[bot] 41fbbbee8b
build(deps): update rowan requirement from 0.15 to 0.16
Updates the requirements on [rowan](https://github.com/rust-analyzer/rowan) to permit the latest version.
- [Commits](https://github.com/rust-analyzer/rowan/compare/v0.15.0...v0.16.0)

---
updated-dependencies:
- dependency-name: rowan
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-11-18 09:30:52 +00:00

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.16"
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