18f8e2562e
Using the org_mode_samples integration tests through the rust test framework has removed the need for the toy language binary and I think removing it will make rust-analyzer less confused about imports. This repository is now solely a library repository.
29 lines
458 B
TOML
29 lines
458 B
TOML
[package]
|
|
name = "toy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "0BSD"
|
|
|
|
[lib]
|
|
name = "organic"
|
|
path = "src/lib.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"
|