mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
b29946130e
This PR hoists all of the dependencies of the `languages` crate to the workspace level. Release Notes: - N/A
28 lines
521 B
TOML
28 lines
521 B
TOML
[package]
|
|
name = "journal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/journal.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono = "0.4"
|
|
dirs = "4.0"
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
log.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
shellexpand.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|