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
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
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]
|
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"
|
2024-01-31 05:41:29 +03:00
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
2022-11-16 01:45:04 +03:00
|
|
|
shellexpand = "2.1.0"
|
2024-01-31 05:41:29 +03:00
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { path = "../workspace" }
|
2023-05-20 18:54:38 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|