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