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" }
16settings = { path = "../settings" }
17
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"] }