[package]
edition = "2024"
rust-version = "1.98"
name = "act-credentials"
version = "0.13.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Credential profiles, field definitions and storage backends for the ACT host"
homepage = "https://actcore.dev"
readme = false
keywords = [
"act",
"wasm",
"credentials",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/actcore/act-cli"
[lib]
name = "act_credentials"
path = "src/lib.rs"
[[test]]
name = "backend_selection"
path = "tests/backend_selection.rs"
[[test]]
name = "store_roundtrip"
path = "tests/store_roundtrip.rs"
[dependencies.fs4]
version = "1"
features = ["sync"]
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1.2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1