Cargo.toml

 1[package]
 2name = "journal"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/journal.rs"
10doctest = false
11
12[dependencies]
13editor = { path = "../editor" }
14gpui = { path = "../gpui" }
15util = { path = "../util" }
16workspace = { path = "../workspace" }
17settings = { path = "../settings" }
18anyhow.workspace = true
19chrono = "0.4"
20dirs = "4.0"
21serde.workspace = true
22schemars.workspace = true
23log.workspace = true
24shellexpand = "2.1.0"
25
26[dev-dependencies]
27editor = { path = "../editor", features = ["test-support"] }