mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 20:50:31 +00:00
S3 Storage:
- Implement AWS Signature v4 for S3-compatible storage (MinIO, AWS)
- Add s3_access_key, s3_secret_key, s3_region config options
- Support both authenticated and anonymous S3 access
- Add proper URI encoding for S3 canonical requests
Docker Registry:
- Fix routing for multi-segment image names (e.g., library/alpine)
- Add namespace routes for two-segment paths (/v2/{ns}/{name}/...)
- Add debug tracing for upstream proxy operations
Config:
- Add NORA_STORAGE_S3_ACCESS_KEY env var
- Add NORA_STORAGE_S3_SECRET_KEY env var
- Add NORA_STORAGE_S3_REGION env var (default: us-east-1)
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
name = "nora-registry"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Cloud-Native Artifact Registry - Fast, lightweight, multi-protocol"
|
|
keywords = ["registry", "docker", "artifacts", "cloud-native", "devops"]
|
|
categories = ["command-line-utilities", "development-tools", "web-programming"]
|
|
|
|
[[bin]]
|
|
name = "nora"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio.workspace = true
|
|
axum.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
reqwest.workspace = true
|
|
sha2.workspace = true
|
|
async-trait.workspace = true
|
|
hmac.workspace = true
|
|
hex.workspace = true
|
|
toml = "0.8"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
bcrypt = "0.17"
|
|
base64 = "0.22"
|
|
prometheus = "0.13"
|
|
lazy_static = "1.5"
|
|
httpdate = "1"
|
|
utoipa = { version = "5", features = ["axum_extras"] }
|
|
utoipa-swagger-ui = { version = "9", features = ["axum", "reqwest"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
tar = "0.4"
|
|
flate2 = "1.0"
|
|
indicatif = "0.17"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2"
|
|
tower_governor = "0.8"
|
|
governor = "0.10"
|
|
parking_lot = "0.12"
|
|
zeroize = { version = "1.8", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
wiremock = "0.6"
|