mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
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>
22 lines
545 B
TOML
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"
|