-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
95 lines (90 loc) · 2.93 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
[workspace]
members = ["scotty-core", "scotty", "scottyctl"]
resolver = "2"
[workspace.package]
name = "scotty"
version = "0.1.0-alpha.20"
edition = "2021"
description = "scotty is a Micro-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"
[workspace.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"] }
clap_complete = "4.2"
serde_json = { version = "1.0.128", features = [] }
tokio = { version = "1.38.1", features = [
"fs",
"sync",
"time",
"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.25.0", features = [
"otlp",
"tracing_subscriber_ext",
] }
axum-tracing-opentelemetry = "0.25.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"
path-clean = "1.0.1"
bcrypt = "0.16.0"
maplit = "1.0.2"
urlencoding = "2.1.3"
deunicode = "1"
[workspace.metadata.release]
pre-release-hook = ["sh", "-c", "git cliff -o CHANGELOG.md --tag {{version}}"]
sign-tag = true
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",
]