-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
110 lines (102 loc) · 3.08 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[package]
name = "scotty"
version = "0.1.0-alpha.13"
edition = "2021"
description = "scotty is a small PaaS which helps you to administer a bunch of docker-compose-based applications. It comes with an API and a cli"
authors = ["Stephan Maximilian Huber <[email protected]>"]
repository = "https://github.com/factorial-io/scotty"
license-file = "LICENSE"
[[bin]]
name = "scottyctl"
path = "src/scottyctl.rs"
[dependencies]
anyhow = "1.0.89"
axum = { version = "0.7.7", features = ["ws", "macros"] }
bollard = "0.18.0"
config = "0.14.0"
readonly = "0.2.12"
serde = "1.0.210"
clap = { version = "4.5", features = ["derive", "env"] }
serde_json = { version = "1.0.128", features = [] }
tokio = { version = "1.38.1", features = [
"rt",
"rt-multi-thread",
"macros",
"signal",
"process",
] }
tracing = "0.1.40"
tracing-subscriber = "*"
opentelemetry = { version = "0.27.0", features = ["trace"] }
opentelemetry_sdk = { version = "0.27", features = [
"rt-tokio",
], default-features = false }
tracing-opentelemetry = "0.28"
init-tracing-opentelemetry = { version = "0.24.0", features = [
"otlp",
"tracing_subscriber_ext",
] }
axum-tracing-opentelemetry = "0.24.0"
opentelemetry-otlp = { version = "0.27.0", features = [
"reqwest-client",
"reqwest-rustls",
"http-proto",
"tls",
] }
utoipa = { version = "5.0.0", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "8.0", features = ["axum", "reqwest"] }
utoipa-redoc = { version = "5.0", features = ["axum"] }
utoipa-rapidoc = { version = "5.0", features = ["axum"] }
tower-http = { version = "0.6.1", features = ["cors", "fs"] }
tokio-tungstenite = "*"
futures-util = "0.3.30"
uuid = { version = "1.10", features = ["v4", "serde"] }
reqwest = { version = "0.12.8", features = ["json"] }
thiserror = "1.0.64"
clokwerk = { version = "0.4.0", features = ["async"] }
walkdir = "2.5.0"
chrono = { version = "0.4.38", features = ["serde"] }
tokio-stream = "0.1.16"
serde_yml = "0.0.12"
regex = "1.11.0"
tabled = { version = "0.17.0", features = ["ansi"] }
owo-colors = "4.1.0"
async-trait = "0.1.83"
base64 = "0.22.1"
slug = "0.1.6"
path-clean = "1.0.1"
bcrypt = "0.16.0"
maplit = "1.0.2"
urlencoding = "2.1.3"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = [
"prepush-hook",
"run-cargo-test",
"run-cargo-clippy",
"run-cargo-fmt",
]
[workspace.metadata.release]
sign-tag = true
pre-release-hook = [
"git",
"cliff",
"-o",
"CHANGELOG.md",
"--tag",
"{{version}}",
]
pre-release-replacements = [
{ file = "README.md", search = "Current release: [a-z0-9\\.-]+", replace = "Current release: {{version}}" },
]
[workspace.metadata.cross.target.aarch64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH",
]
[workspace.metadata.cross.target.x86_64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH",
]