forked from datenlord/sync_fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (46 loc) · 1.09 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
47
48
49
50
51
52
53
54
[package]
name = "fuse_ll"
version = "0.1.0"
authors = ["Pu Wang <[email protected]>"]
edition = "2018"
description = "Fuse Low Level"
repository = "https://github.com/datenlord/sync_fuse"
readme = "README.md"
license = "MIT"
keywords = ["fuse"]
categories = ["libfuse"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
env_logger = "0.6.0"
libc = "0.2"
log = "0.4.6"
nix = "0.17.0"
clap = "2.33.1"
bincode = "1.3.1"
regex = "1"
[dev-dependencies]
fuse_ll = { path = "." }
#[profile.dev]
#codegen-units = 32 # parallel compiling, no optimizations
#[profile.release]
#debug = true
#lto = true # Link-Time Optimizations, no parallel compiling
#opt-level = 2
#[profile.test]
#debug = true
#opt-level = 1
#[profile.doc]
#debug-assertions = false
#panic = 'abort' # ‘unwind’
[features]
abi-7-9 = []
abi-7-10 = ["abi-7-9"]
abi-7-11 = ["abi-7-10"]
abi-7-12 = ["abi-7-11"]
abi-7-13 = ["abi-7-12"]
abi-7-14 = ["abi-7-13"]
abi-7-15 = ["abi-7-14"]
abi-7-16 = ["abi-7-15"]
abi-7-17 = ["abi-7-16"]
abi-7-18 = ["abi-7-17"]
abi-7-19 = ["abi-7-18"]