[package]
edition = "2021"
name = "git-sync-rs"
version = "0.7.7"
authors = ["Ivan Malison <IvanMalison@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatic git repository synchronization with file watching"
homepage = "https://github.com/colonelpanic8/git-sync-rs"
readme = "README.md"
keywords = [
"git",
"sync",
"watch",
"auto-commit",
"backup",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/colonelpanic8/git-sync-rs"
[features]
tray = [
"ksni",
"image",
]
[lib]
name = "git_sync_rs"
path = "src/lib.rs"
[[bin]]
name = "git-sync-rs"
path = "src/main.rs"
[[test]]
name = "auto_commit"
path = "tests/auto_commit.rs"
[[test]]
name = "basic_sync"
path = "tests/basic_sync.rs"
[[test]]
name = "bidirectional_sync"
path = "tests/bidirectional_sync.rs"
[[test]]
name = "binary_conflict"
path = "tests/binary_conflict.rs"
[[test]]
name = "conflict_branch"
path = "tests/conflict_branch.rs"
[[test]]
name = "core_regressions"
path = "tests/core_regressions.rs"
[[test]]
name = "debounce_starvation"
path = "tests/debounce_starvation.rs"
[[test]]
name = "file_deletion"
path = "tests/file_deletion.rs"
[[test]]
name = "file_watch"
path = "tests/file_watch.rs"
[[test]]
name = "gitignore"
path = "tests/gitignore.rs"
[[test]]
name = "merge_conflict"
path = "tests/merge_conflict.rs"
[[test]]
name = "multiple_users"
path = "tests/multiple_users.rs"
[[test]]
name = "nested_repo"
path = "tests/nested_repo.rs"
[[test]]
name = "periodic_sync"
path = "tests/periodic_sync.rs"
[[test]]
name = "skip_hooks"
path = "tests/skip_hooks.rs"
[[test]]
name = "sync_deadlock"
path = "tests/sync_deadlock.rs"
[[test]]
name = "uncommitted_changes"
path = "tests/uncommitted_changes.rs"
[[test]]
name = "watch_gitignore"
path = "tests/watch_gitignore.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.directories]
version = "5.0"
[dependencies.git2]
version = "0.18"
[dependencies.hostname]
version = "0.3"
[dependencies.image]
version = "0.25"
features = ["png"]
optional = true
default-features = false
[dependencies.ksni]
version = "0.3"
optional = true
[dependencies.notify]
version = "6.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.shellexpand]
version = "3.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3.0"