[package]
edition = "2021"
rust-version = "1.87"
name = "pakx-core"
version = "0.1.10"
authors = ["pakx contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "pakx core — manifest, lockfile, resolver, installer logic"
readme = false
license = "MIT"
repository = "https://github.com/pakxdev/pakx"
[lib]
name = "pakx_core"
path = "src/lib.rs"
[[test]]
name = "credentials"
path = "tests/credentials.rs"
[[test]]
name = "lockfile"
path = "tests/lockfile.rs"
[[test]]
name = "manifest"
path = "tests/manifest.rs"
[[test]]
name = "mutate"
path = "tests/mutate.rs"
[dependencies.base64]
version = "0.22"
[dependencies.dirs]
version = "5"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.url]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.13"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "forbid"