Compare commits

...

2 Commits

Author SHA1 Message Date
Tom Alexander
320b5f8568
Publish version 0.1.15.
All checks were successful
rust-build Build rust-build has succeeded
rust-test Build rust-test has succeeded
clippy Build clippy has succeeded
rustfmt Build rustfmt has succeeded
rust-foreign-document-test Build rust-foreign-document-test has succeeded
2024-01-28 17:12:45 -05:00
Tom Alexander
99b2af6c99
Fix clippy. 2024-01-28 17:11:18 -05:00
2 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
[package] [package]
name = "organic" name = "organic"
version = "0.1.14" version = "0.1.15"
authors = ["Tom Alexander <tom@fizz.buzz>"] authors = ["Tom Alexander <tom@fizz.buzz>"]
description = "An org-mode parser." description = "An org-mode parser."
edition = "2021" edition = "2021"

View File

@ -11,6 +11,7 @@ macro_rules! to_wasm {
$wasm_context: crate::wasm::to_wasm::ToWasmContext<'_>, $wasm_context: crate::wasm::to_wasm::ToWasmContext<'_>,
) -> Result<Self::Output, crate::error::CustomError> { ) -> Result<Self::Output, crate::error::CustomError> {
let $original = self; let $original = self;
#[allow(unused_braces)]
$fnbody $fnbody
} }
} }