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" }
17anyhow.workspace = true
18chrono = "0.4"
19dirs = "4.0"
20serde.workspace = true
21schemars.workspace = true
22log.workspace = true
23shellexpand = "2.1.0"
24
25[dev-dependencies]
26editor = { path = "../editor", features = ["test-support"] }