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 01:22:06 +00:00
|
|
|
opentelemetry = { version = "0.20.0", optional = true, default-features = false, features = ["trace", "rt-tokio"] }
|
|
|
|
opentelemetry-otlp = { version = "0.13.0", optional = true }
|
|
|
|
opentelemetry-semantic-conventions = { version = "0.12.0", optional = true }
|
|
|
|
tokio = { version = "1.30.0", optional = true, default-features = false, features = ["rt", "rt-multi-thread"] }
|
2023-08-11 00:01:00 +00:00
|
|
|
tracing = { version = "0.1.37", optional = true }
|
2023-08-11 01:22:06 +00:00
|
|
|
tracing-opentelemetry = { version = "0.20.0", optional = true }
|
|
|
|
tracing-subscriber = { version = "0.3.17", optional = true, 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 01:22:06 +00:00
|
|
|
tracing = ["dep:opentelemetry", "dep:opentelemetry-otlp", "dep:opentelemetry-semantic-conventions", "dep:tokio", "dep:tracing", "dep:tracing-opentelemetry", "dep:tracing-subscriber"]
|
2023-04-19 04:22:25 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
strip = "symbols"
|