[package] name = "c8-backup" version = "0.3.0" edition = "2021" authors = ["Ole Schönburg "] description = "Backup and restore Camunda Platform 8 deployments" license = "MIT" homepage = "https://github.com/oleschoenburg/c8-backup" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = "1" serde_derive = "1" tokio = { version = "1", features = ["full"] } kube = { version = "0.82", default-features = false, features = ["client", "runtime", "ws", "rustls-tls"] } k8s-openapi = { version = "0.18", features = ["v1_26"] } serde_json = "1" tracing = "0.1" tracing-tree = "0.2" tracing-subscriber = { version = "0.3", features = ["env-filter"] } hyper = "0.14" clap = { version = "4.2.7", features = ["derive"] } chrono = "0.4.24" chrono-humanize = "0.2.2" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.0.5" # The preferred Rust toolchain to use in CI (rustup toolchain syntax) rust-toolchain-version = "1.67.1" # CI backends to support (see 'cargo dist generate-ci') ci = ["github"] # Target platforms to build apps for (Rust target-triple syntax) targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]