diff --git a/Cargo.toml b/Cargo.toml index 199fbb1..5da252d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "organic" -version = "0.1.2" +version = "0.1.3" authors = ["Tom Alexander "] description = "An org-mode parser." edition = "2021" @@ -14,7 +14,8 @@ include = [ "LICENSE", "**/*.rs", "Cargo.toml", - "tests/*" + "tests/*", + "org_mode_samples/" ] [lib] @@ -40,7 +41,7 @@ tracing-subscriber = { version = "0.3.17", optional = true, features = ["env-fil walkdir = "2.3.3" [features] -default = ["compare"] +default = [] compare = [] tracing = ["dep:opentelemetry", "dep:opentelemetry-otlp", "dep:opentelemetry-semantic-conventions", "dep:tokio", "dep:tracing", "dep:tracing-opentelemetry", "dep:tracing-subscriber"] diff --git a/src/main.rs b/src/main.rs index ba9f535..c61f9ef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,7 +86,7 @@ fn run_compare>(org_contents: P) -> Result<(), Box