2022-07-16 03:26:49 +00:00
|
|
|
[package]
|
2023-07-14 02:32:56 +00:00
|
|
|
name = "organic"
|
2023-07-28 01:19:36 +00:00
|
|
|
version = "0.1.1"
|
2023-07-28 00:57:29 +00:00
|
|
|
authors = ["Tom Alexander <tom@fizz.buzz>"]
|
|
|
|
description = "An org-mode parser."
|
2022-07-16 03:26:49 +00:00
|
|
|
edition = "2021"
|
2022-07-17 22:45:51 +00:00
|
|
|
license = "0BSD"
|
2023-07-28 00:57:29 +00:00
|
|
|
repository = "https://code.fizz.buzz/talexander/organic"
|
|
|
|
readme = "README.org"
|
|
|
|
keywords = ["emacs", "org-mode"]
|
2023-07-28 01:19:36 +00:00
|
|
|
categories = ["parsing"]
|
2023-08-11 00:01:00 +00:00
|
|
|
resolver = "2"
|
2022-07-16 03:26:49 +00:00
|
|
|
|
2023-04-19 02:38:18 +00:00
|
|
|
[lib]
|
|
|
|
name = "organic"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2023-04-19 22:12:53 +00:00
|
|
|
[[bin]]
|
2023-08-10 22:51:16 +00:00
|
|
|
# This bin exists for development purposes only. The real target of this crate is the library.
|
|
|
|
name = "compare"
|
2023-04-19 22:12:53 +00:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-07-16 03:26:49 +00:00
|
|
|
[dependencies]
|
|
|
|
nom = "7.1.1"
|
2023-08-11 00:01:00 +00: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-16 03:26:49 +00:00
|
|
|
|
2023-04-19 02:38:18 +00:00
|
|
|
[build-dependencies]
|
|
|
|
walkdir = "2.3.3"
|
|
|
|
|
2022-07-16 03:26:49 +00:00
|
|
|
[features]
|
2023-08-11 00:01:00 +00:00
|
|
|
default = ["compare", "tracing"]
|
2023-04-10 17:38:31 +00:00
|
|
|
compare = []
|
2023-08-11 00:01:00 +00:00
|
|
|
tracing = ["dep:tracing"]
|
2023-04-19 04:22:25 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
strip = "symbols"
|