21 lines
541 B
TOML
21 lines
541 B
TOML
[package]
|
|
name = "rusty-journal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
home = "0.5"
|
|
serde_json = "1.0"
|
|
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"
|