mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 05:40:31 +00:00
- Workspace clippy lints: or_fun_call, redundant_clone, collection_is_never_read, naive_bytecount, stable_sort_primitive, large_types_passed_by_value, assigning_clones - Fix or_fun_call in cargo_registry.rs (unwrap_or -> unwrap_or_else) - Release profiles: release (thin LTO) + release-official (full LTO, codegen-units=1) - COMPAT.md: protocol compatibility matrix for all 7 registries (40 endpoints) - scripts/diff-registry.sh: differential smoke tests (Docker/npm/Cargo/PyPI/Go/Raw)
70 lines
1.7 KiB
TOML
70 lines
1.7 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"]
|
|
|
|
[lib]
|
|
name = "nora_registry"
|
|
path = "src/lib.rs"
|
|
|
|
[[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 = "1.1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
bcrypt = "0.19"
|
|
base64 = "0.22"
|
|
prometheus = "0.14"
|
|
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.1"
|
|
indicatif = "0.18"
|
|
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"] }
|
|
argon2 = { version = "0.5", features = ["std", "rand"] }
|
|
tower-http = { version = "0.6", features = ["set-header"] }
|
|
percent-encoding = "2"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
tempfile = "3"
|
|
wiremock = "0.6"
|
|
criterion = { version = "0.8", features = ["html_reports"] }
|
|
tower = { version = "0.5", features = ["util"] }
|
|
http-body-util = "0.1"
|
|
|
|
[[bench]]
|
|
name = "parsing"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|