-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (42 loc) · 1.01 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
43
44
45
46
[package]
name = "rsure"
version = "0.10.0-dev"
authors = ["David Brown <[email protected]>"]
description = """
Rsure captures hashes and metadata about a tree of files, and can
later verify these hashes and metadata to determine if the files have
changed. It supports incremental updates, and includes an standalone
executable for scanning and checking trees.
"""
license = "MIT"
readme = "README.md"
repository = "https://github.com/d3zd3z/rsure"
edition = "2018"
exclude = [
"2sure.*.gz"
]
[dependencies]
chrono = "0.4"
crossbeam = "0.8"
data-encoding = "2.1.1"
flate2 = "1.0"
lazy_static = "1.4"
libc = "0.2.11"
log = "0.4.6" # 0.4.6 needed to fix problem with named macro imports.
# rsure-naming = { path = "naming", version = "0.1.0" }
num_cpus = "1.10"
openssl = "0.10"
regex = "1.5"
rusqlite = "0.26"
structopt = "0.3"
tempdir = "0.3"
thiserror = "1.0"
time = "0.3"
weave = { path = "weave", version = "0.4.0-dev" }
zstd = "0.10"
# This will go away
env_logger = "0.9"
[[bin]]
name = "rsure"
test = false
doc = false