zed/crates/journal2/Cargo.toml

28 lines
597 B
TOML
Raw Normal View History

2023-10-28 18:37:25 +03:00
[package]
name = "journal2"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/journal2.rs"
doctest = false
[dependencies]
2023-11-18 21:46:35 +03:00
editor = { package = "editor2", path = "../editor2" }
2023-11-02 20:55:02 +03:00
gpui = { package = "gpui2", path = "../gpui2" }
2023-10-28 18:37:25 +03:00
util = { path = "../util" }
2023-11-03 13:55:06 +03:00
workspace2 = { path = "../workspace2" }
2023-10-28 18:37:25 +03:00
settings2 = { path = "../settings2" }
anyhow.workspace = true
chrono = "0.4"
dirs = "4.0"
serde.workspace = true
schemars.workspace = true
log.workspace = true
shellexpand = "2.1.0"
[dev-dependencies]
2023-11-18 21:46:35 +03:00
editor = { package="editor2", path = "../editor2", features = ["test-support"] }