mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-20 16:11:46 +03:00
18 lines
330 B
TOML
18 lines
330 B
TOML
[package]
|
|
name = "gitbutler-changeset"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["git2", "mmap"]
|
|
git2 = ["dep:git2"]
|
|
mmap = ["dep:mmap-rs"]
|
|
|
|
[dependencies]
|
|
thiserror.workspace = true
|
|
git2 = { workspace = true, optional = true }
|
|
mmap-rs = { version = "0.6.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
paste = "1.0.14"
|