[package]
edition = "2021"
name = "pray-core"
version = "1.9.2"
authors = ["Andrei Makarov <contact@kiskolabs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for Prayfile, the package manager for the language placed before inference"
homepage = "https://pray.kisko.dev"
documentation = "https://docs.rs/pray-core"
readme = "README.md"
keywords = [
"pray",
"prayfile",
"agents",
"inference",
"lockfile",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/kiskolabs/pray"
[features]
auth = ["dep:rusqlite"]
default = ["auth"]
[lib]
name = "pray_core"
path = "src/lib.rs"
[[example]]
name = "hash_check"
path = "examples/hash_check.rs"
[[test]]
name = "archive_path_safety"
path = "tests/archive_path_safety.rs"
[[test]]
name = "auth_store_flow"
path = "tests/auth_store_flow.rs"
[[test]]
name = "auth_token_security"
path = "tests/auth_token_security.rs"
[[test]]
name = "client_trust"
path = "tests/client_trust.rs"
[[test]]
name = "conformance_fixtures"
path = "tests/conformance_fixtures.rs"
[[test]]
name = "dependency_cycle"
path = "tests/dependency_cycle.rs"
[[test]]
name = "deprecation"
path = "tests/deprecation.rs"
[[test]]
name = "derived_metadata"
path = "tests/derived_metadata.rs"
[[test]]
name = "destination_render"
path = "tests/destination_render.rs"
[[test]]
name = "environment_render"
path = "tests/environment_render.rs"
[[test]]
name = "format_manifest"
path = "tests/format_manifest.rs"
[[test]]
name = "package_signature"
path = "tests/package_signature.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "parser_fuzz"
path = "tests/parser_fuzz.rs"
[[test]]
name = "publish_tokens"
path = "tests/publish_tokens.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[[test]]
name = "registry_search"
path = "tests/registry_search.rs"
[[test]]
name = "registry_yank"
path = "tests/registry_yank.rs"
[[test]]
name = "require_signed_packages"
path = "tests/require_signed_packages.rs"
[[test]]
name = "resolve_context"
path = "tests/resolve_context.rs"
[[test]]
name = "rfc_ids"
path = "tests/rfc_ids/main.rs"
[[test]]
name = "schema_validation"
path = "tests/schema_validation.rs"
[[test]]
name = "shared_corpus"
path = "tests/shared_corpus.rs"
[[test]]
name = "ssh_identity"
path = "tests/ssh_identity.rs"
[[test]]
name = "verify_position"
path = "tests/verify_position.rs"
[dependencies.base64]
version = "0.23"
[dependencies.ed25519-dalek]
version = "3"
[dependencies.getrandom]
version = "0.4"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"rustls",
]
default-features = false
[dependencies.rusqlite]
version = "0.40"
features = [
"bundled",
"fallible_uint",
]
optional = true
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.tar]
version = "0.4"
[dependencies.toml]
version = "1.1"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.ed25519-dalek]
version = "3"
[dev-dependencies.jsonschema]
version = "0.52"
[dev-dependencies.proptest]
version = "1"