Cargo.toml
1[package]
2name = "journal"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/journal.rs"
9doctest = false
10
11[dependencies]
12editor = { path = "../editor" }
13gpui = { path = "../gpui" }
14util = { path = "../util" }
15workspace = { path = "../workspace" }
16anyhow.workspace = true
17chrono = "0.4"
18dirs = "4.0"
19log.workspace = true
20settings = { path = "../settings" }
21shellexpand = "2.1.0"