fabro/crates/arc-devcontainer/Cargo.toml
Bryan Helmkamp f17c457a15 Add local path and HTTPS feature references to arc-devcontainer
Features can now be referenced as local paths (./feature or ../feature)
or HTTPS URLs (https://example.com/feature.tgz) in addition to OCI
registry references. A dispatch function routes fetches based on the
feature ID prefix. The oras CLI is only required for OCI refs.

Also updates dir_name_from_id to handle local paths (strip ./) and
URLs (strip .tgz extension), and passes devcontainer_dir to
resolve_features instead of build_context.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 00:45:17 -05:00

22 lines
545 B
TOML

[package]
name = "arc-devcontainer"
edition.workspace = true
version.workspace = true
license.workspace = true
description = "Parse and resolve devcontainer.json into Dockerfiles and lifecycle hooks"
[lib]
doctest = false
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = "0.9"
thiserror = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }
reqwest = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros"] }
tempfile = "3"