Skip to content

Commit

Permalink
move to workspaces - for #159
Browse files Browse the repository at this point in the history
to avoid future pr clashes
  • Loading branch information
clux committed Mar 1, 2020
1 parent 52e04a3 commit 9174f69
Show file tree
Hide file tree
Showing 21 changed files with 67 additions and 62 deletions.
66 changes: 4 additions & 62 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,63 +1,5 @@
[package]
name = "kube"
version = "0.27.0"
description = "Kubernetes client in the style of client-go"
authors = [
"clux <sszynrae@gmail.com>",
"ynqa <un.pensiero.vano@gmail.com>",
[workspace]
default-members = ["kube"]
members = [
"kube",
]
license = "Apache-2.0"
repository = "https://github.com/clux/kube-rs"
readme = "README.md"
keywords = ["kubernetes", "reflector", "informer", "client-go", "client-rust"]
categories = ["web-programming::http-client"]
edition = "2018"

[dependencies]
base64 = "0.11.0"
chrono = "0.4.10"
dirs = "2.0.2"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.47"
serde_yaml = "0.8.11"
http = "0.2.0"
url = "2.1.1"
log = "0.4.8"
time = "0.2.6"
either = "1.5.3"
thiserror = "1.0.10"
futures-timer = "3.0.1"
futures-util = "0.3.4"
futures = "0.3.4"
openssl = { version = "0.10.28", optional = true }
rustls = { version = "0.16.0", optional = true }
bytes = "0.5.4"
Inflector = "0.11.4"

[dependencies.reqwest]
version = "0.10.2"
default-features = false
features = ["json", "gzip", "stream"]

[dependencies.k8s-openapi]
version = "0.7.1"
default-features = false
features = []

[features]
default = ["native-tls"]
native-tls = ["openssl", "reqwest/native-tls"]
rustls-tls = ["rustls", "reqwest/rustls-tls"]

[dev-dependencies]
tempfile = "3.1.0"
env_logger = "0.7.1"
tokio = { version = "0.2.11", features = ["full"] }
anyhow = "1.0.26"
k8s-openapi-derive = "0.7.1"

[dev-dependencies.k8s-openapi]
version = "0.7.1"
default-features = false
features = ["v1_17"]
63 changes: 63 additions & 0 deletions kube/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
[package]
name = "kube"
version = "0.27.0"
description = "Kubernetes client in the style of client-go"
authors = [
"clux <sszynrae@gmail.com>",
"ynqa <un.pensiero.vano@gmail.com>",
]
license = "Apache-2.0"
repository = "https://github.com/clux/kube-rs"
readme = "README.md"
keywords = ["kubernetes", "reflector", "informer", "client-go", "client-rust"]
categories = ["web-programming::http-client"]
edition = "2018"

[dependencies]
base64 = "0.11.0"
chrono = "0.4.10"
dirs = "2.0.2"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.47"
serde_yaml = "0.8.11"
http = "0.2.0"
url = "2.1.1"
log = "0.4.8"
time = "0.2.6"
either = "1.5.3"
thiserror = "1.0.10"
futures-timer = "3.0.1"
futures-util = "0.3.4"
futures = "0.3.4"
openssl = { version = "0.10.28", optional = true }
rustls = { version = "0.16.0", optional = true }
bytes = "0.5.4"
Inflector = "0.11.4"

[dependencies.reqwest]
version = "0.10.2"
default-features = false
features = ["json", "gzip", "stream"]

[dependencies.k8s-openapi]
version = "0.7.1"
default-features = false
features = []

[features]
default = ["native-tls"]
native-tls = ["openssl", "reqwest/native-tls"]
rustls-tls = ["rustls", "reqwest/rustls-tls"]

[dev-dependencies]
tempfile = "3.1.0"
env_logger = "0.7.1"
tokio = { version = "0.2.11", features = ["full"] }
anyhow = "1.0.26"
k8s-openapi-derive = "0.7.1"

[dev-dependencies.k8s-openapi]
version = "0.7.1"
default-features = false
features = ["v1_17"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9174f69

Please sign in to comment.