diff --git a/src/bin_compare.rs b/src/bin_compare.rs index 428117c..e09893c 100644 --- a/src/bin_compare.rs +++ b/src/bin_compare.rs @@ -6,8 +6,6 @@ use std::io::Read; use organic::compare::run_anonymous_compare; use organic::compare::run_compare_on_file; -mod util; - #[cfg(feature = "tracing")] use crate::init_tracing::init_telemetry; #[cfg(feature = "tracing")] diff --git a/src/bin_wasm_test.rs b/src/bin_wasm_test.rs index ab898de..ac29419 100644 --- a/src/bin_wasm_test.rs +++ b/src/bin_wasm_test.rs @@ -2,17 +2,12 @@ #![feature(exit_status_error)] use std::io::Read; -use organic::settings::GlobalSettings; -use wasm::wasm_parse_org; - -mod error; -mod wasm; +use organic::wasm::compare::wasm_run_anonymous_compare; #[cfg(feature = "tracing")] use crate::init_tracing::init_telemetry; #[cfg(feature = "tracing")] use crate::init_tracing::shutdown_telemetry; -use crate::wasm::compare::wasm_run_anonymous_compare_with_settings; #[cfg(feature = "tracing")] mod init_tracing; @@ -41,11 +36,9 @@ async fn main_body() -> Result<(), Box> { let args = std::env::args().skip(1); if args.is_empty() { let org_contents = read_stdin_to_string()?; - let wasm_result = wasm_parse_org(org_contents.as_str()); - println!("{}", serde_json::to_string(&wasm_result)?); - if wasm_run_anonymous_compare_with_settings(org_contents, &GlobalSettings::default(), false) - .await? - { + // let wasm_result = wasm_parse_org(org_contents.as_str()); + // println!("{}", serde_json::to_string(&wasm_result)?); + if wasm_run_anonymous_compare(org_contents).await? { } else { Err("Diff results do not match.")?; } diff --git a/src/lib.rs b/src/lib.rs index 95e0564..98b4b7f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,6 +12,8 @@ extern crate test; pub mod compare; #[cfg(any(feature = "compare", feature = "wasm_test"))] pub mod util; +#[cfg(feature = "wasm_test")] +pub mod wasm; mod context; mod error; diff --git a/src/wasm/angle_link.rs b/src/wasm/angle_link.rs index 1aa1b0d..91f9dda 100644 --- a/src/wasm/angle_link.rs +++ b/src/wasm/angle_link.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::AngleLink; +use crate::types::AngleLink; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/babel_call.rs b/src/wasm/babel_call.rs index 9b5d358..5306618 100644 --- a/src/wasm/babel_call.rs +++ b/src/wasm/babel_call.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::BabelCall; +use crate::types::BabelCall; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/bold.rs b/src/wasm/bold.rs index 0e01095..1afd6c0 100644 --- a/src/wasm/bold.rs +++ b/src/wasm/bold.rs @@ -1,12 +1,12 @@ use std::marker::PhantomData; -use organic::types::Bold; use serde::Deserialize; use serde::Serialize; use super::macros::to_wasm; use super::standard_properties::WasmStandardProperties; use super::to_wasm::ToWasm; +use crate::types::Bold; use crate::wasm::to_wasm::ToWasmStandardProperties; #[derive(Debug, Serialize)] diff --git a/src/wasm/center_block.rs b/src/wasm/center_block.rs index b00ef4c..5b96023 100644 --- a/src/wasm/center_block.rs +++ b/src/wasm/center_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::CenterBlock; +use crate::types::CenterBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/citation.rs b/src/wasm/citation.rs index 10d008f..adc26b9 100644 --- a/src/wasm/citation.rs +++ b/src/wasm/citation.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Citation; +use crate::types::Citation; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/citation_reference.rs b/src/wasm/citation_reference.rs index 46eb8c5..8de4f2a 100644 --- a/src/wasm/citation_reference.rs +++ b/src/wasm/citation_reference.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::CitationReference; +use crate::types::CitationReference; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/clock.rs b/src/wasm/clock.rs index 1772816..68afa2f 100644 --- a/src/wasm/clock.rs +++ b/src/wasm/clock.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Clock; +use crate::types::Clock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/code.rs b/src/wasm/code.rs index 285cf2a..4fdc1f4 100644 --- a/src/wasm/code.rs +++ b/src/wasm/code.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Code; +use crate::types::Code; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/comment.rs b/src/wasm/comment.rs index 45ad645..e15c565 100644 --- a/src/wasm/comment.rs +++ b/src/wasm/comment.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Comment; +use crate::types::Comment; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/comment_block.rs b/src/wasm/comment_block.rs index ef025b7..7032f7d 100644 --- a/src/wasm/comment_block.rs +++ b/src/wasm/comment_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::CommentBlock; +use crate::types::CommentBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/compare/mod.rs b/src/wasm/compare/mod.rs index c66863d..723c677 100644 --- a/src/wasm/compare/mod.rs +++ b/src/wasm/compare/mod.rs @@ -1,3 +1,4 @@ mod runner; -pub(crate) use runner::wasm_run_anonymous_compare_with_settings; +pub use runner::wasm_run_anonymous_compare; +pub use runner::wasm_run_anonymous_compare_with_settings; diff --git a/src/wasm/compare/runner.rs b/src/wasm/compare/runner.rs index 2926768..0645eed 100644 --- a/src/wasm/compare/runner.rs +++ b/src/wasm/compare/runner.rs @@ -1,6 +1,12 @@ -use organic::parser::parse_with_settings; -use organic::settings::GlobalSettings; -use organic::util::print_versions; +use crate::context::GlobalSettings; +use crate::parser::parse_with_settings; +use crate::util::print_versions; + +pub async fn wasm_run_anonymous_compare>( + org_contents: P, +) -> Result> { + wasm_run_anonymous_compare_with_settings(org_contents, &GlobalSettings::default(), false).await +} pub async fn wasm_run_anonymous_compare_with_settings<'g, 's, P: AsRef>( org_contents: P, diff --git a/src/wasm/diary_sexp.rs b/src/wasm/diary_sexp.rs index 34f9eb2..df38e90 100644 --- a/src/wasm/diary_sexp.rs +++ b/src/wasm/diary_sexp.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::DiarySexp; +use crate::types::DiarySexp; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/document.rs b/src/wasm/document.rs index cf0a838..1eda47e 100644 --- a/src/wasm/document.rs +++ b/src/wasm/document.rs @@ -1,4 +1,4 @@ -use organic::types::Document; +use crate::types::Document; use serde::Serialize; use super::ast_node::WasmAstNode; diff --git a/src/wasm/drawer.rs b/src/wasm/drawer.rs index 78c90fa..c2a8bfa 100644 --- a/src/wasm/drawer.rs +++ b/src/wasm/drawer.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Drawer; +use crate::types::Drawer; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/dynamic_block.rs b/src/wasm/dynamic_block.rs index 477bc06..f59e575 100644 --- a/src/wasm/dynamic_block.rs +++ b/src/wasm/dynamic_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::DynamicBlock; +use crate::types::DynamicBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/entity.rs b/src/wasm/entity.rs index e8c9230..1ba83ce 100644 --- a/src/wasm/entity.rs +++ b/src/wasm/entity.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Entity; +use crate::types::Entity; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/example_block.rs b/src/wasm/example_block.rs index 4bae903..6f10dea 100644 --- a/src/wasm/example_block.rs +++ b/src/wasm/example_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::ExampleBlock; +use crate::types::ExampleBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/export_block.rs b/src/wasm/export_block.rs index 802351b..f403d30 100644 --- a/src/wasm/export_block.rs +++ b/src/wasm/export_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::ExportBlock; +use crate::types::ExportBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/export_snippet.rs b/src/wasm/export_snippet.rs index 34bd237..c70edf2 100644 --- a/src/wasm/export_snippet.rs +++ b/src/wasm/export_snippet.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::ExportSnippet; +use crate::types::ExportSnippet; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/fixed_width_area.rs b/src/wasm/fixed_width_area.rs index 62cdb2b..3507a1f 100644 --- a/src/wasm/fixed_width_area.rs +++ b/src/wasm/fixed_width_area.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::FixedWidthArea; +use crate::types::FixedWidthArea; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/footnote_definition.rs b/src/wasm/footnote_definition.rs index 13ee019..52f5595 100644 --- a/src/wasm/footnote_definition.rs +++ b/src/wasm/footnote_definition.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::FootnoteDefinition; +use crate::types::FootnoteDefinition; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/footnote_reference.rs b/src/wasm/footnote_reference.rs index eb021b3..ea10de3 100644 --- a/src/wasm/footnote_reference.rs +++ b/src/wasm/footnote_reference.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::FootnoteReference; +use crate::types::FootnoteReference; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/headline.rs b/src/wasm/headline.rs index 490a423..57f86a9 100644 --- a/src/wasm/headline.rs +++ b/src/wasm/headline.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Heading; +use crate::types::Heading; use serde::Serialize; use super::ast_node::WasmAstNode; diff --git a/src/wasm/horizontal_rule.rs b/src/wasm/horizontal_rule.rs index 8fa53af..275a5ef 100644 --- a/src/wasm/horizontal_rule.rs +++ b/src/wasm/horizontal_rule.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::HorizontalRule; +use crate::types::HorizontalRule; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/inline_babel_call.rs b/src/wasm/inline_babel_call.rs index 65296f8..8ccb569 100644 --- a/src/wasm/inline_babel_call.rs +++ b/src/wasm/inline_babel_call.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::InlineBabelCall; +use crate::types::InlineBabelCall; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/inline_source_block.rs b/src/wasm/inline_source_block.rs index 67b27e3..06cf245 100644 --- a/src/wasm/inline_source_block.rs +++ b/src/wasm/inline_source_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::InlineSourceBlock; +use crate::types::InlineSourceBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/italic.rs b/src/wasm/italic.rs index f7043ac..3b5a869 100644 --- a/src/wasm/italic.rs +++ b/src/wasm/italic.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Italic; +use crate::types::Italic; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/keyword.rs b/src/wasm/keyword.rs index 0f64ab3..5320771 100644 --- a/src/wasm/keyword.rs +++ b/src/wasm/keyword.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Keyword; +use crate::types::Keyword; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/latex_environment.rs b/src/wasm/latex_environment.rs index 591ae4c..116f803 100644 --- a/src/wasm/latex_environment.rs +++ b/src/wasm/latex_environment.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::LatexEnvironment; +use crate::types::LatexEnvironment; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/latex_fragment.rs b/src/wasm/latex_fragment.rs index 8b2bd0b..8cf4949 100644 --- a/src/wasm/latex_fragment.rs +++ b/src/wasm/latex_fragment.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::LatexFragment; +use crate::types::LatexFragment; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/line_break.rs b/src/wasm/line_break.rs index 0e0b527..90a80d1 100644 --- a/src/wasm/line_break.rs +++ b/src/wasm/line_break.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::LineBreak; +use crate::types::LineBreak; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/mod.rs b/src/wasm/mod.rs index f6443db..a053c8a 100644 --- a/src/wasm/mod.rs +++ b/src/wasm/mod.rs @@ -10,7 +10,7 @@ mod code; mod comment; mod comment_block; #[cfg(feature = "wasm_test")] -pub(crate) mod compare; +pub mod compare; mod diary_sexp; mod document; mod drawer; diff --git a/src/wasm/node_property.rs b/src/wasm/node_property.rs index 498a0c4..a3822ea 100644 --- a/src/wasm/node_property.rs +++ b/src/wasm/node_property.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::NodeProperty; +use crate::types::NodeProperty; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/org_macro.rs b/src/wasm/org_macro.rs index eefee46..6da449b 100644 --- a/src/wasm/org_macro.rs +++ b/src/wasm/org_macro.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::OrgMacro; +use crate::types::OrgMacro; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/paragraph.rs b/src/wasm/paragraph.rs index 6b248b2..0d099f0 100644 --- a/src/wasm/paragraph.rs +++ b/src/wasm/paragraph.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Paragraph; +use crate::types::Paragraph; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/parse_result.rs b/src/wasm/parse_result.rs index 7b80026..ea4ffe1 100644 --- a/src/wasm/parse_result.rs +++ b/src/wasm/parse_result.rs @@ -1,10 +1,10 @@ -use organic::parser::parse_with_settings; -use organic::settings::GlobalSettings; use serde::Serialize; use super::document::WasmDocument; use super::ToWasm; use super::ToWasmContext; +use crate::parser::parse_with_settings; +use crate::settings::GlobalSettings; #[derive(Debug, Serialize)] #[serde(tag = "status", content = "content")] diff --git a/src/wasm/plain_link.rs b/src/wasm/plain_link.rs index 8acb943..b649fda 100644 --- a/src/wasm/plain_link.rs +++ b/src/wasm/plain_link.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::PlainLink; +use crate::types::PlainLink; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/plain_list.rs b/src/wasm/plain_list.rs index 69933ae..6c05ece 100644 --- a/src/wasm/plain_list.rs +++ b/src/wasm/plain_list.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::PlainList; +use crate::types::PlainList; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/plain_list_item.rs b/src/wasm/plain_list_item.rs index c61a91b..e07790c 100644 --- a/src/wasm/plain_list_item.rs +++ b/src/wasm/plain_list_item.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::PlainListItem; +use crate::types::PlainListItem; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/plain_text.rs b/src/wasm/plain_text.rs index 4999ab6..15d67fa 100644 --- a/src/wasm/plain_text.rs +++ b/src/wasm/plain_text.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::PlainText; +use crate::types::PlainText; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/planning.rs b/src/wasm/planning.rs index dc10b55..af51ee1 100644 --- a/src/wasm/planning.rs +++ b/src/wasm/planning.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Planning; +use crate::types::Planning; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/property_drawer.rs b/src/wasm/property_drawer.rs index ac36d0d..f3a8d28 100644 --- a/src/wasm/property_drawer.rs +++ b/src/wasm/property_drawer.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::PropertyDrawer; +use crate::types::PropertyDrawer; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/quote_block.rs b/src/wasm/quote_block.rs index 6de86e3..55be9f7 100644 --- a/src/wasm/quote_block.rs +++ b/src/wasm/quote_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::QuoteBlock; +use crate::types::QuoteBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/radio_link.rs b/src/wasm/radio_link.rs index cedd83d..af135b9 100644 --- a/src/wasm/radio_link.rs +++ b/src/wasm/radio_link.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::RadioLink; +use crate::types::RadioLink; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/radio_target.rs b/src/wasm/radio_target.rs index 0781765..6fdb879 100644 --- a/src/wasm/radio_target.rs +++ b/src/wasm/radio_target.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::RadioTarget; +use crate::types::RadioTarget; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/regular_link.rs b/src/wasm/regular_link.rs index ed254f0..45bca14 100644 --- a/src/wasm/regular_link.rs +++ b/src/wasm/regular_link.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::RegularLink; +use crate::types::RegularLink; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/section.rs b/src/wasm/section.rs index e534e35..f9d5876 100644 --- a/src/wasm/section.rs +++ b/src/wasm/section.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Section; +use crate::types::Section; use serde::Serialize; use super::ast_node::WasmAstNode; diff --git a/src/wasm/special_block.rs b/src/wasm/special_block.rs index da8de13..8926630 100644 --- a/src/wasm/special_block.rs +++ b/src/wasm/special_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::SpecialBlock; +use crate::types::SpecialBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/src_block.rs b/src/wasm/src_block.rs index dc9e786..3660ed3 100644 --- a/src/wasm/src_block.rs +++ b/src/wasm/src_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::SrcBlock; +use crate::types::SrcBlock; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/standard_properties.rs b/src/wasm/standard_properties.rs index 9ecff6e..4538c54 100644 --- a/src/wasm/standard_properties.rs +++ b/src/wasm/standard_properties.rs @@ -1,5 +1,5 @@ -use organic::types::PostBlank; -use organic::types::StandardProperties; +use crate::types::PostBlank; +use crate::types::StandardProperties; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/statistics_cookie.rs b/src/wasm/statistics_cookie.rs index f5c0a9d..9fe95e8 100644 --- a/src/wasm/statistics_cookie.rs +++ b/src/wasm/statistics_cookie.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::StatisticsCookie; +use crate::types::StatisticsCookie; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/strike_through.rs b/src/wasm/strike_through.rs index 200c78f..8037ff8 100644 --- a/src/wasm/strike_through.rs +++ b/src/wasm/strike_through.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::StrikeThrough; +use crate::types::StrikeThrough; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/subscript.rs b/src/wasm/subscript.rs index ddb0375..9cbaa4e 100644 --- a/src/wasm/subscript.rs +++ b/src/wasm/subscript.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Subscript; +use crate::types::Subscript; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/superscript.rs b/src/wasm/superscript.rs index 3c38f4d..c5aaaa0 100644 --- a/src/wasm/superscript.rs +++ b/src/wasm/superscript.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Superscript; +use crate::types::Superscript; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/table.rs b/src/wasm/table.rs index 4ef8dab..2f66304 100644 --- a/src/wasm/table.rs +++ b/src/wasm/table.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Table; +use crate::types::Table; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/table_cell.rs b/src/wasm/table_cell.rs index 91e1072..46ec118 100644 --- a/src/wasm/table_cell.rs +++ b/src/wasm/table_cell.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::TableCell; +use crate::types::TableCell; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/table_row.rs b/src/wasm/table_row.rs index a9115e7..d5a7e5a 100644 --- a/src/wasm/table_row.rs +++ b/src/wasm/table_row.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::TableRow; +use crate::types::TableRow; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/target.rs b/src/wasm/target.rs index 29c2d99..3c5bc0e 100644 --- a/src/wasm/target.rs +++ b/src/wasm/target.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Target; +use crate::types::Target; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/timestamp.rs b/src/wasm/timestamp.rs index 9584ce9..c23ba49 100644 --- a/src/wasm/timestamp.rs +++ b/src/wasm/timestamp.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Timestamp; +use crate::types::Timestamp; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/underline.rs b/src/wasm/underline.rs index f797a0d..16bb122 100644 --- a/src/wasm/underline.rs +++ b/src/wasm/underline.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Underline; +use crate::types::Underline; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/verbatim.rs b/src/wasm/verbatim.rs index aa46650..9e177c0 100644 --- a/src/wasm/verbatim.rs +++ b/src/wasm/verbatim.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::Verbatim; +use crate::types::Verbatim; use serde::Deserialize; use serde::Serialize; diff --git a/src/wasm/verse_block.rs b/src/wasm/verse_block.rs index 1bec077..caac62f 100644 --- a/src/wasm/verse_block.rs +++ b/src/wasm/verse_block.rs @@ -1,6 +1,6 @@ use std::marker::PhantomData; -use organic::types::VerseBlock; +use crate::types::VerseBlock; use serde::Deserialize; use serde::Serialize;