mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
7e5a3f9f6b
We're enabling the log crate feature everywhere, but only using it on the server for now. Co-Authored-By: Antonio Scandurra <me@as-cii.com>
18 lines
342 B
TOML
18 lines
342 B
TOML
[package]
|
|
name = "journal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/journal.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
chrono = "0.4"
|
|
dirs = "4.0"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|