-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
27 lines (25 loc) · 871 Bytes
/
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
[package]
name = "librsync"
version = "0.2.3"
authors = ["Michele Bertasi <@brt_device>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["librsync", "rsync", "backup"]
repository = "https://github.com/mbrt/librsync-rs"
homepage = "https://github.com/mbrt/librsync-rs"
documentation = "https://docs.rs/librsync"
description = """
Bindings to librsync for calculating and applying network
deltas exposed as Reader/Writer streams.
"""
[features]
default = ["log"] # forward logs to log crate, or disable them
lints = ["clippy", "nightly"]
nightly = [] # for building with nightly and unstable features
unstable = ["lints", "nightly"] # for building with travis-cargo
[dependencies]
libc = "0.2"
librsync-sys = { version = "0.1", path = "librsync-sys" }
clippy = { version = "< 1", optional = true }
log = { version = "0.4", optional = true }