zed/crates/dev_container/Cargo.toml
KyleBarton 6acca17c44
Devcontainer setup modal (#47021)
Adds the ability to create a dev container definition from scratch.
Additionally, separates devcontainer logic out into its own crate, since
it was getting sufficiently complex to separate from the
`recent_projects` crate.

A screen recording of the modal experience:


https://github.com/user-attachments/assets/f6cf95e1-eb7b-4ca3-86c7-c1cbc26ca557


Release Notes:

- Added modal to initialize a dev container definition in the project
with `projects: initialize dev container`
- Added podman support for dev container actions with the `use_podman`
setting
- Improved devcontainer error handling

---------

Co-authored-by: Sam Coward <idoru42@gmail.com>
2026-01-16 15:20:48 -08:00

29 lines
606 B
TOML

[package]
name = "dev_container"
version = "0.1.0"
publish.workspace = true
edition.workspace = true
[dependencies]
serde.workspace = true
serde_json.workspace = true
http_client.workspace = true
http.workspace = true
gpui.workspace = true
futures.workspace = true
log.workspace = true
node_runtime.workspace = true
menu.workspace = true
paths.workspace = true
picker.workspace = true
settings.workspace = true
smol.workspace = true
ui.workspace = true
util.workspace = true
workspace.workspace = true
[dev-dependencies]
gpui = { workspace = true, features = ["test-support"] }
[lints]
workspace = true