
- GPUI and all dependencies: Apache 2 - Everything else: AGPL Here's a script that I've generated for it: https://gist.github.com/osiewicz/6afdd6626e517da24a2092807e6f0b6e Release Notes: - N/A --------- Co-authored-by: David <david@zed.dev>
28 lines
590 B
TOML
28 lines
590 B
TOML
[package]
|
|
name = "journal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "AGPL-3.0-only"
|
|
license-file = "../../LICENSE-AGPL"
|
|
|
|
[lib]
|
|
path = "src/journal.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
settings = { path = "../settings" }
|
|
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"] }
|