forked from eclipse-zenoh/zenoh-backend-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (68 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#
# Copyright (c) 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <[email protected]>
#
[package]
name = "zenoh-backend-filesystem"
version = "1.0.0-dev"
repository = "https://github.com/eclipse-zenoh/zenoh-backend-filesystem"
homepage = "http://zenoh.io"
authors = [
"kydos <[email protected]>",
"Julien Enoch <[email protected]>",
"Olivier Hécart <[email protected]>",
"Luca Cominardi <[email protected]>",
"Sreeja Nair <[email protected]>",
]
edition = "2021"
license = "EPL-2.0 OR Apache-2.0"
categories = ["network-programming"]
description = "Backend for Zenoh using the file system"
[lib]
name = "zenoh_backend_fs"
crate-type = ["cdylib", "rlib"]
[features]
stats = ["zenoh/stats"]
dynamic_plugin = []
default = ["dynamic_plugin"]
[dependencies]
async-trait = "0.1.66"
dunce = "1.0.3"
git-version = "0.3.5"
home = "0.5.4"
lazy_static = "1.4.0"
mime_guess = "2.0.4"
regex = "1.7.1"
rocksdb = "0.22.0"
serde_json = "1.0.117"
tempfile = "3.4.0"
tokio = { version = "1.35.1", default-features = false } # Default features are disabled due to some crates' requirements
tracing = "0.1"
uhlc = "0.5.2"
walkdir = "2.3.2"
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
"unstable",
"internal",
"plugins"
] , version = "1.0.0-dev" }
zenoh_backend_traits = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" , version = "1.0.0-dev" }
zenoh-plugin-trait = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" , version = "1.0.0-dev" }
zenoh-ext = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" , version = "1.0.0-dev" }
[build-dependencies]
rustc_version = "0.4.0"
[package.metadata.deb]
name = "zenoh-backend-filesystem"
maintainer = "[email protected]"
copyright = "2022 ZettaScale Technology"
section = "net"
license-file = ["LICENSE", "0"]
depends = "zenoh-plugin-storage-manager (=1.0.0~dev-1)"