smbcloud-cli 0.4.12__tar.gz → 0.4.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/Cargo.lock +16 -16
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/PKG-INFO +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-network/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-utils/Cargo.toml +1 -1
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/Cargo.toml +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/cli.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/forgot/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/login/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/login/process.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/logout/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/me/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/signup/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/account/signup/process.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ci.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cli/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/auth_app.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/cli.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/process.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/render.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/request.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-auth/url_builder.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/git.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_nextjs_ssr.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_rails.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_rust.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_swift.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_vite_spa.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_migrate.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/remote_messages.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/setup.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/setup_create_new_project.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/setup_project.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/setup_select_project.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-mail/cli.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-mail/current_project.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-mail/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-mail/process.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-mail/render.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/interface.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/main.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/mcp.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/cli.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/crud_create.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/crud_delete.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/crud_read.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/crud_update.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/deploy_target.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/deployment.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/project/process.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/session_config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/cli.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/process.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/render.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/request.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/tenant_client.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/tenant/url_builder.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/token/clear_smb_token.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/token/get_smb_token.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/token/is_logged_in.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/token/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/token/smb_token_file_path.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/confirm_dialog.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/deployment_detail_view.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/deployment_table.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/me_view.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/plain.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/project_detail_view.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/project_table.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/prompt.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/reporter.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/ui/theme.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/.gitignore +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/check_email.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/login.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/logout.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/me.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/get_account_status.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/get_consent_url.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/get_profile.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/get_token.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/mod.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/provider.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/remove.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/resend_email_verification.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/resend_reset_password_instruction.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/reset_password.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/signup.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/build.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/error.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/known_hosts.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/report.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/runner.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-deploy/src/transport.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/src/mail_app.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/src/mail_inbox.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/src/mail_message.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/src/request.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/src/smbcloud_mail.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-mail/src/url_builder.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/account.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/app_auth.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/deploy_config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/deploy_config_update.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/error_codes.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/forgot.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/frontend_app.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/login.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/mail.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/oauth.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/project.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/repository.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/reset_password_response.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/runner.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/signup.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/tenant.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-network/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-network/src/environment.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-network/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-network/src/network.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking/src/constants.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking/src/smb_client.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_deploy_repo_create.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_frontend_app_create.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_frontend_app_deploy_config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_frontend_app_read.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_frontend_app_update_deploy_config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_create.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_delete.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_deployment_create.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_deployment_read.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_deployment_update.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_read.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/crud_project_update.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/request.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/url_builder.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-utils/README.md +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-utils/src/config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-utils/src/lib.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-utils/src/write_config.rs +0 -0
- {smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/pyproject.toml +0 -0
|
@@ -2528,7 +2528,7 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
|
2528
2528
|
|
|
2529
2529
|
[[package]]
|
|
2530
2530
|
name = "smbcloud-auth"
|
|
2531
|
-
version = "0.4.
|
|
2531
|
+
version = "0.4.13"
|
|
2532
2532
|
dependencies = [
|
|
2533
2533
|
"log",
|
|
2534
2534
|
"reqwest",
|
|
@@ -2543,7 +2543,7 @@ dependencies = [
|
|
|
2543
2543
|
|
|
2544
2544
|
[[package]]
|
|
2545
2545
|
name = "smbcloud-auth-sdk"
|
|
2546
|
-
version = "0.4.
|
|
2546
|
+
version = "0.4.13"
|
|
2547
2547
|
dependencies = [
|
|
2548
2548
|
"base64",
|
|
2549
2549
|
"reqwest",
|
|
@@ -2558,7 +2558,7 @@ dependencies = [
|
|
|
2558
2558
|
|
|
2559
2559
|
[[package]]
|
|
2560
2560
|
name = "smbcloud-auth-sdk-py"
|
|
2561
|
-
version = "0.4.
|
|
2561
|
+
version = "0.4.13"
|
|
2562
2562
|
dependencies = [
|
|
2563
2563
|
"pyo3",
|
|
2564
2564
|
"pythonize",
|
|
@@ -2572,7 +2572,7 @@ dependencies = [
|
|
|
2572
2572
|
|
|
2573
2573
|
[[package]]
|
|
2574
2574
|
name = "smbcloud-auth-sdk-wasm"
|
|
2575
|
-
version = "0.4.
|
|
2575
|
+
version = "0.4.13"
|
|
2576
2576
|
dependencies = [
|
|
2577
2577
|
"serde-wasm-bindgen",
|
|
2578
2578
|
"smbcloud-auth-sdk",
|
|
@@ -2585,7 +2585,7 @@ dependencies = [
|
|
|
2585
2585
|
|
|
2586
2586
|
[[package]]
|
|
2587
2587
|
name = "smbcloud-cli"
|
|
2588
|
-
version = "0.4.
|
|
2588
|
+
version = "0.4.13"
|
|
2589
2589
|
dependencies = [
|
|
2590
2590
|
"anyhow",
|
|
2591
2591
|
"chrono",
|
|
@@ -2631,7 +2631,7 @@ dependencies = [
|
|
|
2631
2631
|
|
|
2632
2632
|
[[package]]
|
|
2633
2633
|
name = "smbcloud-deploy"
|
|
2634
|
-
version = "0.4.
|
|
2634
|
+
version = "0.4.13"
|
|
2635
2635
|
dependencies = [
|
|
2636
2636
|
"anyhow",
|
|
2637
2637
|
"smbcloud-model",
|
|
@@ -2643,7 +2643,7 @@ dependencies = [
|
|
|
2643
2643
|
|
|
2644
2644
|
[[package]]
|
|
2645
2645
|
name = "smbcloud-email-sdk"
|
|
2646
|
-
version = "0.4.
|
|
2646
|
+
version = "0.4.13"
|
|
2647
2647
|
dependencies = [
|
|
2648
2648
|
"anyhow",
|
|
2649
2649
|
"log",
|
|
@@ -2658,7 +2658,7 @@ dependencies = [
|
|
|
2658
2658
|
|
|
2659
2659
|
[[package]]
|
|
2660
2660
|
name = "smbcloud-gresiq"
|
|
2661
|
-
version = "0.4.
|
|
2661
|
+
version = "0.4.13"
|
|
2662
2662
|
dependencies = [
|
|
2663
2663
|
"native-tls",
|
|
2664
2664
|
"postgres-native-tls",
|
|
@@ -2672,7 +2672,7 @@ dependencies = [
|
|
|
2672
2672
|
|
|
2673
2673
|
[[package]]
|
|
2674
2674
|
name = "smbcloud-gresiq-sdk"
|
|
2675
|
-
version = "0.4.
|
|
2675
|
+
version = "0.4.13"
|
|
2676
2676
|
dependencies = [
|
|
2677
2677
|
"anyhow",
|
|
2678
2678
|
"log",
|
|
@@ -2686,7 +2686,7 @@ dependencies = [
|
|
|
2686
2686
|
|
|
2687
2687
|
[[package]]
|
|
2688
2688
|
name = "smbcloud-mail"
|
|
2689
|
-
version = "0.4.
|
|
2689
|
+
version = "0.4.13"
|
|
2690
2690
|
dependencies = [
|
|
2691
2691
|
"reqwest",
|
|
2692
2692
|
"serde",
|
|
@@ -2698,7 +2698,7 @@ dependencies = [
|
|
|
2698
2698
|
|
|
2699
2699
|
[[package]]
|
|
2700
2700
|
name = "smbcloud-model"
|
|
2701
|
-
version = "0.4.
|
|
2701
|
+
version = "0.4.13"
|
|
2702
2702
|
dependencies = [
|
|
2703
2703
|
"chrono",
|
|
2704
2704
|
"log",
|
|
@@ -2714,7 +2714,7 @@ dependencies = [
|
|
|
2714
2714
|
|
|
2715
2715
|
[[package]]
|
|
2716
2716
|
name = "smbcloud-network"
|
|
2717
|
-
version = "0.4.
|
|
2717
|
+
version = "0.4.13"
|
|
2718
2718
|
dependencies = [
|
|
2719
2719
|
"clap 4.6.2",
|
|
2720
2720
|
"log",
|
|
@@ -2727,7 +2727,7 @@ dependencies = [
|
|
|
2727
2727
|
|
|
2728
2728
|
[[package]]
|
|
2729
2729
|
name = "smbcloud-networking"
|
|
2730
|
-
version = "0.4.
|
|
2730
|
+
version = "0.4.13"
|
|
2731
2731
|
dependencies = [
|
|
2732
2732
|
"smbcloud-network",
|
|
2733
2733
|
"url-builder",
|
|
@@ -2735,7 +2735,7 @@ dependencies = [
|
|
|
2735
2735
|
|
|
2736
2736
|
[[package]]
|
|
2737
2737
|
name = "smbcloud-networking-project"
|
|
2738
|
-
version = "0.4.
|
|
2738
|
+
version = "0.4.13"
|
|
2739
2739
|
dependencies = [
|
|
2740
2740
|
"anyhow",
|
|
2741
2741
|
"async-trait",
|
|
@@ -2753,11 +2753,11 @@ dependencies = [
|
|
|
2753
2753
|
|
|
2754
2754
|
[[package]]
|
|
2755
2755
|
name = "smbcloud-s6n"
|
|
2756
|
-
version = "0.4.
|
|
2756
|
+
version = "0.4.13"
|
|
2757
2757
|
|
|
2758
2758
|
[[package]]
|
|
2759
2759
|
name = "smbcloud-utils"
|
|
2760
|
-
version = "0.4.
|
|
2760
|
+
version = "0.4.13"
|
|
2761
2761
|
dependencies = [
|
|
2762
2762
|
"anyhow",
|
|
2763
2763
|
"dirs",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "smbcloud-deploy"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.13"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
authors = ["keypair34 <216233964+keypair34@users.noreply.github.com>, Seto Elkahfi <seto@smbcloud.xyz>"]
|
|
6
6
|
description = "smbCloud build and deploy engine: UI-agnostic, reusable by the CLI, CI, and the server-side git receiver."
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_nextjs_ssr.rs
RENAMED
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_rails.rs
RENAMED
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_rust.rs
RENAMED
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_swift.rs
RENAMED
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/process_deploy_vite_spa.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/setup_create_new_project.rs
RENAMED
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/cli/src/cloud-deploy/setup_select_project.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/get_account_status.rs
RENAMED
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/oauth/get_consent_url.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-auth/src/resend_email_verification.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/deploy_config_update.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-model/src/reset_password_response.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/request.rs
RENAMED
|
File without changes
|
{smbcloud_cli-0.4.12 → smbcloud_cli-0.4.13}/crates/smbcloud-networking-project/src/url_builder.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|