2021-12-28 22:06:17 +00:00
|
|
|
[package]
|
|
|
|
name = "homesync"
|
2021-12-29 13:15:19 +00:00
|
|
|
authors = ["Joshua Potter <jrpotter.github.io>"]
|
|
|
|
description = """
|
|
|
|
|
|
|
|
Homesync provides a way of automatically syncing config files across various\
|
|
|
|
applications you may use.
|
|
|
|
"""
|
2021-12-28 22:06:17 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-29 13:15:19 +00:00
|
|
|
clap = { version = "3.0.0-rc.9", features = ["derive"] }
|
2021-12-31 15:17:55 +00:00
|
|
|
git2 = "0.13.25"
|
2022-01-02 16:14:05 +00:00
|
|
|
log = "0.4.14"
|
2021-12-29 13:15:19 +00:00
|
|
|
notify = "4.0.16"
|
2021-12-30 02:47:34 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0.132"
|
|
|
|
serde_yaml = "0.8"
|
2022-01-02 16:14:05 +00:00
|
|
|
simplelog = { version = "^0.11.1", features = ["paris"] }
|
2022-01-01 01:12:21 +00:00
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
2022-01-02 16:14:05 +00:00
|
|
|
yaml-rust = "0.4.4"
|