Cargo.toml

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