-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.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
[package]
name = "drone-teleport"
authors = ["Charles R. Portwood II <charlesportwoodii@erianna.com>"]
description = "A drone plugin for executing remote commands over SSH, through Teleport Machine IDs"
repository = "https://github.com/charlesportwoodii/drone-teleport"
version = "0.2.10"
edition = "2021"
[registries.crates-io]
protocol = "sparse"
[dependencies]
tokio = { version = "^1.11", features = ["full"] }
glob = { version = "^0.3" }
human_bytes = { version = "^0.3" }
zstd = { version = "^0.11" }
rand = { version = "^0.8" }
futures = { version = "^0.3" }
tar = { version = "^0.4" }
derivative = { version = "^2.2" }
clap = { version = "^3.2", features = ["derive", "env"] }
serde = { version = "^1", features = ["derive"] }
serde_json = { version = "^1", features = ["raw_value"] }
openssh = { version = "^0.9"}
openssh-sftp-client = { version = "^0.12" }
colored = { version = "^2.0" }
[package.metadata.deb]
maintainer = "Charles R. Portwood II <charlesportwoodii@erianna.com>"
copyright = "2022 - Present, Charles R. Portwood II <charlesportwoodii@erianna.com>"
extended-description = """Drone Teleport is a command line utility to interact with Teleport nodes through Teleport Machien IDs"""
depends = "$auto"
section = "utility"
priority = "optional"
revision = "__REVISION__"
assets = [
["target/release/drone-teleport", "usr/local/bin/", "755"],
["README.md", "usr/share/doc/drone-teleport/README", "644"]
]