diff --git a/Cargo.toml b/Cargo.toml index 7bb12e4..b18580d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +nom = "7.1.1" +chrono = "0.4" diff --git a/src/main.rs b/src/main.rs index e7a11a9..ce0064d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +pub mod libs; + fn main() { println!("Hello, world!"); }