mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-09 04:31:51 +03:00
28 lines
535 B
TOML
28 lines
535 B
TOML
|
[package]
|
||
|
name = "journal2"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/journal2.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
editor = { path = "../editor" }
|
||
|
gpui2 = { path = "../gpui2" }
|
||
|
util = { path = "../util" }
|
||
|
workspace = { path = "../workspace" }
|
||
|
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]
|
||
|
editor = { path = "../editor", features = ["test-support"] }
|