Cargo.toml

 1[package]
 2name = "journal2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/journal2.rs"
 9doctest = false
10
11[dependencies]
12editor = { package = "editor2", path = "../editor2" }
13gpui = { package = "gpui2", path = "../gpui2" }
14util = { path = "../util" }
15workspace2 = { path = "../workspace2" }
16settings2 = { path = "../settings2" }
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 = { package="editor2", path = "../editor2", features = ["test-support"] }