-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (32 loc) · 1.04 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
41
42
[package]
name = "borgbackup"
version = "0.9.1"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/myOmikron/borgbackup"
authors = ["Niklas Pfister <[email protected]>"]
description = "A wapper for the borgbackup utility"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Serialization library
serde = { version = "~1", features = ["derive"] }
serde_json = { version = "~1" }
# Datetime support
chrono = { version = ">=0.4.22", default-features = false, features = ["serde"] }
# Posix command splitting and joining support
shlex = { version = ">=1.3.0" }
# Error handling
thiserror = { version = "~1" }
# Logging facade
log = { version = "~0.4" }
# Async runtime, used for async process
tokio = { version = ">=1.23.1", features = ["process", "macros", "io-util", "sync"], optional = true }
[build-dependencies]
rustc_version = "0.4.0"
[dev-dependencies]
tempfile = { version = "~3" }
[package.metadata.docs.rs]
all-features = true
[features]
vendored = []
tokio = ["dep:tokio"]