
- 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>
31 lines
620 B
TOML
31 lines
620 B
TOML
[package]
|
|
name = "git"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "AGPL-3.0-only"
|
|
license-file = "../../LICENSE-AGPL"
|
|
|
|
[lib]
|
|
path = "src/git.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clock = { path = "../clock" }
|
|
lazy_static.workspace = true
|
|
sum_tree = { path = "../sum_tree" }
|
|
text = { path = "../text" }
|
|
collections = { path = "../collections" }
|
|
util = { path = "../util" }
|
|
log.workspace = true
|
|
smol.workspace = true
|
|
parking_lot.workspace = true
|
|
async-trait.workspace = true
|
|
futures.workspace = true
|
|
git2.workspace = true
|
|
|
|
[dev-dependencies]
|
|
unindent.workspace = true
|
|
|
|
[features]
|
|
test-support = []
|