| 1 | [package] |
| 2 | name = "df-ssh" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "dogfood-ssh" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [dependencies] |
| 13 | df-db = { path = "../df-db" } |
| 14 | df-auth = { path = "../df-auth" } |
| 15 | |
| 16 | anyhow.workspace = true |
| 17 | dotenvy.workspace = true |
| 18 | rand.workspace = true |
| 19 | russh.workspace = true |
| 20 | serde_json.workspace = true |
| 21 | sqlx.workspace = true |
| 22 | tokio.workspace = true |
| 23 | tracing.workspace = true |
| 24 | tracing-subscriber.workspace = true |
| 25 | uuid.workspace = true |
25 lines · TOML