-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.13 KB
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
[workspace]
members = ["crates/my-ci-macros"]
[workspace.dependencies]
my-ci-macros = { path = "crates/my-ci-macros", version = "0.0.2" }
[package]
name = "my-ci"
version = "0.0.8"
edition = "2024"
license = "MIT"
description = "Minimalist Local CICD"
repository = "https://github.com/geoffsee/my-ci"
[[bin]]
name = "my-ci"
path = "src/main.rs"
[build-dependencies]
flate2 = "1"
tar = "0.4"
[dependencies]
anyhow = "1"
axum = "0.8"
flate2 = "1"
bollard = "0.18"
bytes = "1"
clap = { version = "4.5", features = ["derive"] }
dotenvy = "0.15.7"
futures-util = "0.3"
my-ci-macros = { workspace = true }
rust-embed = { version = "8.11.0", features = ["include-exclude"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "sqlite", "macros"] }
tar = "0.4"
tokio = { version = "1", features = ["io-util", "macros", "net", "process", "rt-multi-thread", "sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = "0.7"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
walkdir = "2"