-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
81 lines (76 loc) · 2.4 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
74
75
76
77
78
79
80
81
#
# 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]
authors = [
"Darius Maitia <[email protected]>",
"Julien Enoch <[email protected]>",
"Luca Cominardi <[email protected]>",
"Olivier Hécart <[email protected]>",
"kydos <[email protected]>",
]
categories = ["database", "network-programming"]
description = "Backend for Zenoh using AWS S3 API"
edition = "2021"
homepage = "http://zenoh.io"
license = "EPL-2.0 OR Apache-2.0"
name = "zenoh-backend-s3"
repository = "https://github.com/eclipse-zenoh/zenoh-backend-s3"
version = "1.0.0-dev"
[lib]
crate-type = ["cdylib", "rlib"]
name = "zenoh_backend_s3"
[features]
default = ["dynamic_plugin"]
dynamic_plugin = []
stats = ["zenoh/stats"]
[dependencies]
async-rustls = "0.4.0"
async-trait = "0.1.66"
aws-config = "=1.0.0" # Due to MSRV 1.75.0 for aws-config
aws-sdk-s3 = { version = "=1.29.0", features = [
"behavior-version-latest",
] } # Due to MSRV 1.75.0 for aws-sdk-s3 >1.29
aws-smithy-client = "0.60.3"
aws-smithy-runtime = "1.4.0"
base64 = "0.21.0"
futures = "0.3.26"
git-version = "0.3.5"
http = "0.2.9"
hyper = "0.14.24"
hyper-rustls = "0.24.0"
lazy_static = "1.4.0"
rustls-pemfile = "2.0.0"
rustls-pki-types = "1.1.0"
serde = "1.0.154"
serde_json = "1.0.117"
tokio = { version = "1.26.0", features = ["full"] }
tracing = "0.1"
uhlc = "0.5.2"
webpki = "0.22.0"
webpki-roots = "0.25"
zenoh = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
"unstable",
"internal",
] }
zenoh-plugin-trait = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
zenoh_backend_traits = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
[build-dependencies]
rustc_version = "0.4.0"
[package.metadata.deb]
copyright = "2022 ZettaScale Technology"
depends = "zenoh-plugin-storage-manager (=1.0.0~dev-1)"
license-file = ["LICENSE", "0"]
maintainer = "[email protected]"
name = "zenoh-backend-s3"
section = "net"