forked from eclipse-zenoh/zenoh-backend-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (50 loc) · 1.54 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
#
# Copyright (c) 2017, 2020 ADLINK Technology Inc.
#
# 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:
# ADLINK zenoh team, <[email protected]>
#
[package]
name = "zenoh_backend_filesystem"
version = "0.5.0-dev"
authors = ["kydos <[email protected]>",
"Julien Enoch <[email protected]>",
"Olivier Hécart <[email protected]>",
"Luca Cominardi <[email protected]>"]
edition = "2018"
[lib]
name = "zbackend_fs"
crate-type = ["cdylib"]
[dependencies]
zenoh_backend_traits = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh-util = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
async-std = "=1.9.0"
async-trait = "0.1.42"
uhlc = "0.3.1"
lazy_static = "1.4.0"
regex = "1"
env_logger = "0.8.2"
log = "0.4"
git-version = "0.3.4"
home = "0.5.3"
tempfile = "3.2.0"
walkdir = "2.3"
mime_guess = "2.0.3"
rocksdb = "0.16.0"
[build-dependencies]
rustc_version = "0.4.0"
[package.metadata.deb]
name = "zenoh-backend-filesystem"
maintainer = "[email protected]"
copyright = "2017, 2020 ADLINK Technology Inc."
section = "net"
license-file = ["LICENSE", "0"]
depends = "zenoh-storages (=0.5.0-dev)"