-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 609 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 609 Bytes
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
[workspace]
members = [
"gitfleet-core",
"gitfleet-providers",
"gitfleet",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.89"
license = "MIT"
authors = ["airscripts"]
[workspace.dependencies]
gitfleet-core = { path = "gitfleet-core" }
gitfleet-providers = { path = "gitfleet-providers" }
async-trait = "0.1"
base64 = "0.22"
insta = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serial_test = "3"
time = { version = "0.3", features = ["formatting", "serde"] }
tokio = { version = "1", default-features = false }
wiremock = "0.6"