-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
86 lines (72 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "k0s"
version = "0.0.5"
authors = ["btwiuse <btwiuse@gmail.com>"]
license = "MIT"
description = "aggregate your personal infrastructure"
repository = "https://github.com/btwiuse/k0s"
edition = "2021"
readme = "README.md"
include = [
"src/*.rs",
"Cargo.toml",
]
[profile.release]
panic = "abort"
lto = true
[[bin]]
name = "hub"
path = "src/hub.rs"
[[bin]]
name = "k0s"
path = "src/main.rs"
[[bin]]
name = "k8s-controller"
path = "src/k8s-controller.rs"
[dependencies]
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
# serde = "1.0"
# serde_json = "1.0"
# serde_derive = "1.0"
# kube = "0.45"
# https://docs.rs/crate/kube/0.47.0/features
kube = { version = "0.88", features = ["derive"] }
kube-runtime = "0.88"
# kube-derive = "0.45"
# serde = "1.0"
# serde_derive = "1.0"
# serde_json = "1.0"
k8s-openapi = { version = "0.21", features = ["v1_28"] }
schemars = "0.8"
tokio = { version = "1.20", features = ["full"] }
futures = "0.3"
# snafu = "0.6.8"
actix = "0.13"
actix-rt = "2.9"
bytes = "1.1"
actix-web = { version = "4.4", default-features = false, features = ["macros"] }
actix-web-actors = "4.2"
actix-http = "3.5"
# serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
log = "0.4"
simple_logger = "2.1"
[package.metadata.raze]
default_gen_buildrs = true
rust_rules_workspace_name = "rules_rust"
# The path relative path to the Bazel workspace root (location of
# WORKSPACE.bazel/WORKSPACE file). If no workspace file is found,
# the current working directory is used.
workspace_path = "//cargo"
package_aliases_dir = "cargo"
# The set of targets to generate BUILD rules for.
targets = [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
]
# The two acceptable options are "Remote" and "Vendored" which
# is used to idnicate whether the user is using a non-vendored or
# vendored set of dependencies.
genmode = "Remote"