19 lines
501 B
TOML
19 lines
501 B
TOML
|
|
[package]
|
||
|
|
name = "ncl-import-resolver"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
description = "Resolve OCI-hosted Nickel library imports to local filesystem cache"
|
||
|
|
license.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "ncl-import-resolver"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||
|
|
dirs = { workspace = true }
|