[package] authors = ["Christian Visintin "] 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 = []