-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 952 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 952 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
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "loadtest"
version = "0.1.0"
edition = "2024"
rust-version = "1.92.0"
[workspace]
[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "4", features = ["derive", "env"] }
goose = "0.18.0"
#goose-eggs = "0.5.3-dev"
humantime = "2"
log = "0.4"
openid = "0.22.0"
reqwest = "0.13"
reqwest_12 = { version = "0.12", package = "reqwest" }
serde = { version = "1", features = ["derive"] }
serde_json5 = "0.2.1"
serde_json = "1"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-native-tls", "uuid", "json"] }
tokio = { version = "1.43.1", features = ["sync"] }
urlencoding = "2"
packageurl = "0.6.0"
rand = "0.10.0"
[features]
default = ["postgres"]
postgres = ["sqlx/postgres"]
[patch.crates-io]
#goose = { path = "../goose" }
#goose-eggs = { path = "../../goose-eggs" }
goose = { git = "https://github.com/ctron/goose" }
#goose-eggs = { git = "https://github.com/ctron/goose-eggs", branch = "feature/uptick_deps_1" }