neuxdb 0.1.0

A super simple, embedded, encrypted database like SQLite, using pipe-separated files and age encryption.
Documentation
pub mod create_table;
pub mod delete_rows;
pub mod display_rows;
pub mod drop_table;
pub mod insert_rows;
pub mod parse_assignment;
pub mod parse_condition;
pub mod run_script;
pub mod select_rows;
pub mod show_tables;
pub mod update_rows;
pub use create_table::create_table;
pub use delete_rows::delete_rows;
pub use display_rows::format_table;
pub use drop_table::drop_table;
pub use insert_rows::insert_row;
pub use parse_assignment::parse_assignment;
pub use parse_condition::parse_condition;
pub use run_script::run_script;
pub use select_rows::select_rows;
pub use show_tables::show_tables;
pub use update_rows::update_rows;