Skip to content

Commit

Permalink
Merge pull request #794 from bacongobbler/deploy-fermyon-cloud
Browse files Browse the repository at this point in the history
Login/deploy experience to enable GitHub auth
  • Loading branch information
itowlson authored Oct 13, 2022
2 parents 20bcc07 + f4d5737 commit 4dbd044
Show file tree
Hide file tree
Showing 12 changed files with 2,228 additions and 382 deletions.
1,350 changes: 1,111 additions & 239 deletions Cargo.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ async-trait = "0.1"
atty = "0.2"
bindle = { git = "https://github.com/fermyon/bindle", tag = "v0.8.1", default-features = false, features = ["client"] }
bytes = "1.1"
chrono = "0.4"
clap = { version = "3.1.15", features = ["derive", "env"] }
cloud = { path = "crates/cloud" }
cloud-openapi = { git = "https://github.com/fermyon/cloud-openapi" }
comfy-table = "5.0"
copypasta = "0.8.1"
ctrlc = { version = "3.2", features = ["termination"] }
dialoguer = "0.10"
dirs = "4.0"
Expand All @@ -20,13 +24,15 @@ env_logger = "0.9"
futures = "0.3"
hippo-openapi = "0.10"
hippo = { git = "https://github.com/deislabs/hippo-cli", tag = "v0.16.1" }
keyring = "1"
lazy_static = "1.4.0"
nix = { version = "0.24", features = ["signal"] }
outbound-http = { path = "crates/outbound-http" }
outbound-redis = { path = "crates/outbound-redis" }
path-absolutize = "3.0.11"
regex = "1.5.5"
reqwest = { version = "0.11", features = ["stream"] }
rpassword = "7.0"
semver = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0.82"
Expand All @@ -49,6 +55,7 @@ tracing-subscriber = { version = "0.3.7", features = [ "env-filter" ] }
url = "2.2.2"
uuid = "^1.0"
wasmtime = "0.39.1"
webbrowser = "0.7.1"

[target.'cfg(target_os = "linux")'.dependencies]
# This needs to be an explicit dependency to enable
Expand Down
42 changes: 42 additions & 0 deletions crates/cloud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[package]
name = "cloud"
version = "0.1.0"
edition = "2021"
authors = [ "Fermyon Engineering <[email protected]>" ]

[dependencies]
anyhow = "1.0"
async-trait = "0.1"
clap = { version = "3.0", features = ["derive", "env"] }
colored = "2.0.0"
dialoguer = "0.9"
dirs = "4.0"
dunce = "1.0"
env_logger = "0.9"
futures = "0.3.14"
glob = "0.3.0"
cloud-openapi = { git = "https://github.com/fermyon/cloud-openapi" }
itertools = "0.10.0"
log = "0.4"
mime_guess = { version = "2.0" }
path-absolutize = "3.0.11"
regex = "1.5"
reqwest = { version = "0.11", features = ["stream"] }
semver = "1.0"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
sha2 = "0.9"
spin-loader = { path = "../loader" }
spin-publish = { path = "../publish" }
tempfile = "3.3.0"
tokio = { version = "1.17", features = ["full"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
tracing = { version = "0.1", features = [ "log" ] }
toml = "0.5"
uuid = "1"

[dependencies.bindle]
git = "https://github.com/fermyon/bindle"
tag = "v0.8.1"
default-features = false
features = ["client"]
Loading

0 comments on commit 4dbd044

Please sign in to comment.