organic/Cargo.toml

43 lines
933 B
TOML
Raw Normal View History

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
[lib]
name = "organic"
path = "src/lib.rs"
[[bin]]
# This bin exists for development purposes only. The real target of this crate is the library.
name = "compare"
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
[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"]
[profile.release]
lto = true
strip = "symbols"