3 Commits

Author SHA1 Message Date
10a56ad690 Merge pull request 'chore(release): v0.1.1' (#3) from cuddle-please/release into main
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Reviewed-on: https://git.front.kjuulh.io/kjuulh/cuddle-clusters/pulls/3
2024-05-25 13:46:44 +02:00
cuddle-please
6e6ce96855 chore(release): 0.1.1
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-05-25 11:46:15 +00:00
32281c02bb chore: remove deps
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-05-25 13:44:34 +02:00
4 changed files with 25 additions and 1390 deletions

View File

@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.1.1] - 2024-05-25
### Other
- remove deps
## [0.1.0] - 2024-05-25 ## [0.1.0] - 2024-05-25
### Added ### Added

1396
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,6 @@ tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.18" } tracing-subscriber = { version = "0.3.18" }
clap = { version = "4", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }
dotenv = { version = "0.15" } dotenv = { version = "0.15" }
axum = { version = "0.7" }
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.1.1"

View File

@@ -11,20 +11,11 @@ tracing.workspace = true
tracing-subscriber.workspace = true tracing-subscriber.workspace = true
clap.workspace = true clap.workspace = true
dotenv.workspace = true dotenv.workspace = true
axum.workspace = true
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"uuid",
"time",
] }
uuid = { version = "1.7.0", features = ["v4"] } uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
serde_yaml = "0.9.34" serde_yaml = "0.9.34"
tokio-stream = "0.1.15" tokio-stream = { version = "0.1.15", features = ["full"] }
walkdir = "2.5.0" walkdir = "2.5.0"
minijinja = "2.0.1" minijinja = "2.0.1"
futures = "0.3.30" futures = "0.3.30"