-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "replica"
version = "0.4.8"
edition = "2021"
authors = ["[email protected]"]
rust-version = "1.70"
description = "Backup local files to various targets"
keywords = ["backup" ]
license = "Apach-2.0"
readme = "README.md"
homepage = "https://github.com/darrylwest/replica-rs"
repository = "https://github.com/darrylwest/replica-rs"
exclude = [ ".github/*" ]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.27", features = ["derive"] }
log = "0.4.17"
log4rs = "1.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
chrono = { version = "0.4", features = ["serde"] }
toml = "0.8.8"
reqwest = { version = "0.11", features = ["json"] }
hashbrown = { version = "0.14.2", features = ["serde"] }
openssl = "0.10.43"
hex = "0.4.3"
walkdir = "2.3.2"
subprocess = "0.2.9"
domain_keys = { git = "https://github.com/darrylwest/domain-keys.git" }
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
enum_glob_use = "deny"