2022-07-15 23:26:49 -04:00
|
|
|
[package]
|
2023-07-13 22:32:56 -04:00
|
|
|
name = "organic"
|
2023-07-27 21:19:36 -04:00
|
|
|
version = "0.1.1"
|
2023-07-27 20:57:29 -04:00
|
|
|
authors = ["Tom Alexander <tom@fizz.buzz>"]
|
|
|
|
description = "An org-mode parser."
|
2022-07-15 23:26:49 -04:00
|
|
|
edition = "2021"
|
2022-07-17 18:45:51 -04:00
|
|
|
license = "0BSD"
|
2023-07-27 20:57:29 -04:00
|
|
|
repository = "https://code.fizz.buzz/talexander/organic"
|
|
|
|
readme = "README.org"
|
|
|
|
keywords = ["emacs", "org-mode"]
|
2023-07-27 21:19:36 -04:00
|
|
|
categories = ["parsing"]
|
2023-08-10 20:01:00 -04:00
|
|
|
resolver = "2"
|
2022-07-15 23:26:49 -04:00
|
|
|
|
2023-04-18 22:38:18 -04:00
|
|
|
[lib]
|
|
|
|
name = "organic"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2023-04-19 18:12:53 -04:00
|
|
|
[[bin]]
|
2023-08-10 18:51:16 -04:00
|
|
|
# This bin exists for development purposes only. The real target of this crate is the library.
|
|
|
|
name = "compare"
|
2023-04-19 18:12:53 -04:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-07-15 23:26:49 -04:00
|
|
|
[dependencies]
|
|
|
|
nom = "7.1.1"
|
2023-08-10 20:01:00 -04:00
|
|
|
tracing = { version = "0.1.37", optional = true }
|
|
|
|
# opentelemetry = "0.17.0"
|
|
|
|
# opentelemetry-jaeger = "0.16.0"
|
|
|
|
# tracing = "0.1.37"
|
|
|
|
# tracing-opentelemetry = "0.17.2"
|
|
|
|
# tracing-subscriber = {version="0.3.16", features=["env-filter"]}
|
2022-07-15 23:26:49 -04:00
|
|
|
|
2023-04-18 22:38:18 -04:00
|
|
|
[build-dependencies]
|
|
|
|
walkdir = "2.3.3"
|
|
|
|
|
2022-07-15 23:26:49 -04:00
|
|
|
[features]
|
2023-08-10 20:01:00 -04:00
|
|
|
default = ["compare", "tracing"]
|
2023-04-10 13:38:31 -04:00
|
|
|
compare = []
|
2023-08-10 20:01:00 -04:00
|
|
|
tracing = ["dep:tracing"]
|
2023-04-19 00:22:25 -04:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
strip = "symbols"
|