-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.48 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
[package]
name = "stacks-devnet-api"
version = "1.4.1"
edition = "2021"
authors = ["Micaiah Reid <[email protected]>"]
description = "The Stacks Devnet API runs a server that can be used to deploy, delete, manage, and make requests to Stacks Devnets run on Kubernetes."
readme = "README.md"
exclude = ["examples/**", "scripts/**"]
homepage = "https://github.com/hirosystems/stacks-devnet-api"
repository = "https://github.com/hirosystems/stacks-devnet-api"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kube = { version="0.82.2", features = ["client", "runtime"] }
k8s-openapi = { version = "0.18.0", features = ["v1_25"] }
futures = "0.3.31"
tokio = { version = "1.35.1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.8.23"
hyper = { version = "0.14", features = ["full"] }
tower = "0.4.13"
hiro-system-kit = { version = "0.1.0", features = ["log"] }
strum_macros = "0.24.3"
strum = "0.24.1"
toml = "0.5.9"
clarinet-files = "2"
clarinet-deployments = "2"
[dev-dependencies]
tower-test = "0.4.0"
test-case = "3.1.0"
rand = "0.8.5"
serial_test = "2.0.0"
[features]
k8s_tests = []
[patch.crates-io]
clarinet-files = { version = "2",git = "https://github.com/hirosystems/clarinet.git", rev = "e8907ac178dbb03544afbe5ec01d93797591c01f" }
clarinet-deployments = { version = "2",git = "https://github.com/hirosystems/clarinet.git", rev = "e8907ac178dbb03544afbe5ec01d93797591c01f" }