mirror of
https://github.com/TxtDot/dalet-rs.git
synced 2024-11-22 08:46:23 +03:00
refactor: rename abstract to typed
This commit is contained in:
parent
4cc99ce163
commit
a2cb481d29
4 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
pub mod daletl;
|
pub mod daletl;
|
||||||
|
|
||||||
#[cfg(feature = "types")]
|
#[cfg(feature = "types")]
|
||||||
pub mod abstractions;
|
pub mod typed;
|
||||||
|
|
||||||
#[cfg(feature = "daletpack")]
|
#[cfg(feature = "daletpack")]
|
||||||
pub mod daletpack;
|
pub mod daletpack;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use crate::abstractions::{Body, HeadingLevel, NotNullBody, Tag};
|
use crate::typed::{Body, HeadingLevel, NotNullBody, Tag};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum GemTextParseError {
|
pub enum GemTextParseError {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use dalet::{
|
use dalet::{
|
||||||
abstractions::{Body, HeadingLevel, NotNullBody, Tag, TextOrNullArgument},
|
|
||||||
daletl::ToDaletl,
|
daletl::ToDaletl,
|
||||||
daletpack::*,
|
daletpack::*,
|
||||||
|
typed::{Body, HeadingLevel, NotNullBody, Tag, TextOrNullArgument},
|
||||||
};
|
};
|
||||||
use flate2::Compression;
|
use flate2::Compression;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
Loading…
Add table
Reference in a new issue