2021-12-18 15:12:59 +00:00
|
|
|
[package]
|
|
|
|
name = "journal"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-12-18 15:12:59 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/journal.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-12-18 15:12:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-18 17:38:54 +00:00
|
|
|
editor = { path = "../editor" }
|
2021-12-18 15:12:59 +00:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { path = "../workspace" }
|
2023-05-10 19:48:09 +00:00
|
|
|
settings = { path = "../settings" }
|
|
|
|
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2021-12-18 15:12:59 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
dirs = "4.0"
|
2023-05-10 19:48:09 +00:00
|
|
|
serde.workspace = true
|
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
log.workspace = true
|
2022-11-15 22:45:04 +00:00
|
|
|
shellexpand = "2.1.0"
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|