24 lines
637 B
TOML
24 lines
637 B
TOML
[package]
|
|
name = "psychonaut_journal_cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "journal-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
journal = { path = "../journal" }
|
|
psychonaut_journal_types = { path = "../psychonaut_journal_types" }
|
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
clap = { version = "4.5.21", features = ["derive", "env"] }
|
|
#log = { version = "0.4.22", features = ["std", "serde"] }
|
|
#prettytable-rs = "0.10.0"
|
|
serde = { version = "1.0.215", features = ["std", "derive", "serde_derive"] }
|
|
serde_json = "1.0.132"
|
|
#serde_with = "3.11.0"
|
|
#string-error = "0.1.0"
|
|
#termcolor = "1.4.1"
|
|
#thiserror = "2.0.3"
|