blob: 0634152c95f85336551e25c86e101dea4ccce73c (
plain)
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
|
# SPDX-FileCopyrightText: edef <edef@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0
[package]
name = "fossil"
version = "0.1.0"
edition = "2021"
[dependencies]
prost = "0.8.0"
bytes = "1.0.1"
blake3 = { version = "0.3.8", features = ["rayon"] }
sled = "0.34.6"
byteorder = "1.4.3"
fuser = { version = "0.11.0", optional = true }
log = { version = "0.4.14", optional = true }
libc = { version = "0.2.112", optional = true }
env_logger = { version = "0.9.0", optional = true }
lazy_static = { version = "1.4.0", optional = true }
[build-dependencies]
prost-build = "0.8.0"
[features]
wip-mount = ["fuser", "log", "libc", "env_logger", "lazy_static"]
[[bin]]
name = "mount"
required-features = ["wip-mount"]
|