mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 13:50:31 +00:00
- Store metadata (.meta.json) alongside manifests with: - push_timestamp, last_pulled, downloads counter - size_bytes, os, arch, variant - layers list with digest and size - Update metadata on manifest pull (increment downloads, update last_pulled) - Extract OS/arch from config blob on push - Extend UI API TagInfo with metadata fields - Add public_url config option for pull commands - Add Docker upstream proxy with auth support - Add raw repository support - Bump version to 0.2.12
27 lines
667 B
TOML
27 lines
667 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"nora-registry",
|
|
"nora-storage",
|
|
"nora-cli",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.2.12"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["DevITWay <devitway@gmail.com>"]
|
|
repository = "https://github.com/getnora-io/nora"
|
|
homepage = "https://getnora.io"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
sha2 = "0.10"
|
|
async-trait = "0.1"
|