From 45459ef8fcdf5b56c633688178289b9d77114070 Mon Sep 17 00:00:00 2001 From: sleptworld Date: Wed, 27 Jul 2022 23:47:34 +0800 Subject: [PATCH] pds section --- Cargo.toml | 2 ++ src/main.rs | 2 ++ 2 files changed, 4 insertions(+) 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!"); }