-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 970 Bytes
/
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
[package]
name = "etcd_dynamic_state"
version = "0.2.12"
edition = "2021"
authors = ["Ivan Kudriavtsev <ivan.a.kudryavtsev@gmail.com>"]
description = "Etcd dynamic state library"
homepage = "https://github.com/insight-platform/etcd_dynamic_state"
repository = "https://github.com/insight-platform/etcd_dynamic_state"
readme = "README.md"
keywords = ["computer-vision", "video-processing"]
categories = ["algorithms", "data-structures", "computer-vision"]
license = "Apache-2.0"
rust-version = "1.70"
[profile.release]
opt-level = 3
codegen-units = 1
[profile.bench]
opt-level = 3
codegen-units = 1
[dependencies]
log = "0.4"
anyhow = "1"
async-trait = "0.1"
crc32fast = "1.3"
env_logger = "0.11"
etcd-client = { version = "0.13", features = ["tls", "tls-roots"] }
futures = "0.3"
glob = "0.3"
hashbrown = "0.14"
thiserror = "1"
parking_lot = "0.12"
[dependencies.tokio]
version = "1.36"
features = ["rt-multi-thread", "macros"]
[dev-dependencies]
bollard = "0.16"