-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (44 loc) · 1.27 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
[package]
authors = ["Christian Visintin <[email protected]>"]
categories = ["network-programming"]
description = "remotefs implementation for kube"
documentation = "https://docs.rs/remotefs-kube"
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["kube-client", "kube"]
license = "MIT"
name = "remotefs-kube"
readme = "README.md"
repository = "https://github.com/remotefs-rs/remotefs-rs-kube"
version = "0.4.0"
[dependencies]
chrono = "^0.4"
futures-util = "0.3"
k8s-openapi = { version = "0.22", features = ["v1_30"] }
kube = { version = "0.92", features = ["client", "config", "ws"] }
lazy-regex = "3"
log = "^0.4"
remotefs = "^0.3"
tar = "0.4"
tempfile = "3"
thiserror = "^1"
tokio = { version = "1", features = ["fs", "rt"] }
tokio-util = "0.7"
[dev-dependencies]
env_logger = "^0.11"
k8s-openapi = { version = "0.22", features = ["v1_30"] }
kube = { version = "0.92", features = ["client", "config", "runtime", "ws"] }
pretty_assertions = "1"
rand = "^0.8.4"
serde_json = "1"
serial_test = "^3"
[target."cfg(target_os = \"windows\")"]
[target."cfg(target_os = \"windows\")".dependencies]
path-slash = "^0.2.1"
[features]
default = ["find"]
# misc
find = ["remotefs/find"]
no-log = ["log/max_level_off"]
# tests
integration-tests = []