77de97703f
This is a relic from the early development days in this repo. When I first started this repo, it was a clean-slate playground to test ideas for solving the road blocks I hit with my previous attempt at an org-mode parser. To keep things simple, I originally only had a very basic set of syntax rules that only vaguely looked similar to org-mode. Once I had things figured out, I kept developing in this repo, morphing it into a full org-mode parser. A couple of references to those early days still remained, and this patch should get rid of the last of them.
40 lines
821 B
TOML
40 lines
821 B
TOML
[package]
|
|
name = "organic"
|
|
version = "0.1.1"
|
|
authors = ["Tom Alexander <tom@fizz.buzz>"]
|
|
description = "An org-mode parser."
|
|
edition = "2021"
|
|
license = "0BSD"
|
|
repository = "https://code.fizz.buzz/talexander/organic"
|
|
readme = "README.org"
|
|
keywords = ["emacs", "org-mode"]
|
|
categories = ["parsing"]
|
|
|
|
[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"
|
|
|
|
[dependencies]
|
|
nom = "7.1.1"
|
|
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"]}
|
|
|
|
[build-dependencies]
|
|
walkdir = "2.3.3"
|
|
|
|
[features]
|
|
default = ["compare"]
|
|
compare = []
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols"
|