[package] name = "mudtjn-rusty-journal" version = "0.1.1" edition = "2021" authors = ["Mudtjn"] description = "This is my first package published while I am learning rust" license = "MIT" [dependencies] anyhow="1.0" home="0.5" serde_json = "1.0" # Add serde_json. structopt = "0.3" [dependencies.chrono] features = ["serde"] # We're also going to need the serde feature for the chrono crate, so we can serialize the DateTime field. version = "0.4" [dependencies.serde] # Add serde in its own section. features = ["derive"] # We'll need the derive feature. version = "1.0"