aux-search/flake-info/src/data/mod.rs
Yannik Sander 3dfcf4fd45
Fix/explicit printing (#395)
* Extract pandoc function to own module

* Bump schema version

* Make string handling more explicit

* Update logging and pandoc crates

* Improve serializing error handling

* Serialize values as string (for elastic)

* Perform option doc parsing entirely in rust

* Show non pandoc'ed results as code elements

* Parse correct html string

* Change expected `option_type` type to String

* Allow treat string unparsable  as html like non-docbook strings

* Improve deserializing error reporting using serde_path_to_error

* Format code
2021-12-26 16:03:09 +01:00

13 lines
211 B
Rust

mod export;
mod flake;
pub mod import;
mod pandoc;
mod prettyprint;
mod source;
mod system;
mod utility;
pub use export::Export;
pub use flake::{Flake, Repo};
pub use source::{FlakeRef, Hash, Nixpkgs, Source};