Skip to content
45 changes: 45 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ members = [
"sdk/rust",
"sdk/rust/types",
"no_std_check",
"crates/dstack-core",
"crates/dstack",
"crates/dstackup",
"crates/dstack-auth",
]
resolver = "2"

Expand All @@ -72,6 +76,7 @@ dstack-gateway-rpc = { path = "gateway/rpc" }
dstack-kms-rpc = { path = "kms/rpc" }
dstack-guest-agent-rpc = { path = "guest-agent/rpc" }
dstack-vmm-rpc = { path = "vmm/rpc" }
dstack-core = { path = "crates/dstack-core" }
dstack-port-forward = { path = "port-forward" }
cc-eventlog = { path = "cc-eventlog" }
supervisor = { path = "supervisor" }
Expand Down
20 changes: 20 additions & 0 deletions crates/dstack-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
#
# SPDX-License-Identifier: Apache-2.0

[package]
name = "dstack-auth"
version.workspace = true
edition.workspace = true
license.workspace = true

[[bin]]
name = "dstack-auth"
path = "src/main.rs"

[dependencies]
anyhow.workspace = true
clap.workspace = true
rocket = { workspace = true, features = ["json"] }
serde.workspace = true
serde_json.workspace = true
Loading
Loading