Reorganize crate source code

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-03-19 17:08:23 +00:00
parent 718e794f51
commit d072b849c0
92 changed files with 3 additions and 3 deletions

View File

@@ -5,11 +5,11 @@ edition = "2021"
[lib]
name = "qrust"
path = "src/lib/mod.rs"
path = "src/lib/qrust/mod.rs"
[[bin]]
name = "qrust"
path = "src/main.rs"
path = "src/bin/qrust/mod.rs"
[profile.release]
panic = 'abort'

View File

@@ -1,6 +1,6 @@
pub mod backoff;
pub mod de;
pub mod macros;
pub mod r#macro;
pub mod ser;
pub mod time;