[[bin]]
name = "mlock-docker-test"
path = "src/bin/mlock-docker-test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.duende-core]
version = "0.2"
[dependencies.repartir]
version = "1.1"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["rt-multi-thread", "sync", "time", "signal", "fs", "process", "io-util"]
version = "1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[features]
container = []
default = ["native"]
linux = []
macos = []
native = []
pepita = []
wos = []
[lib]
name = "duende_platform"
path = "src/lib.rs"
[lints.clippy]
cargo_common_metadata = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
collapsible_if = "allow"
collapsible_str_replace = "allow"
doc_markdown = "allow"
expect_used = "deny"
field_reassign_with_default = "allow"
float_cmp = "allow"
items_after_statements = "allow"
len_zero = "allow"
manual_assert = "allow"
manual_let_else = "allow"
manual_map = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_borrow = "allow"
needless_borrows_for_generic_args = "allow"
needless_raw_string_hashes = "allow"
option_if_let_else = "allow"
panic = "deny"
panic_in_result_fn = "allow"
redundant_clone = "allow"
redundant_closure_for_method_calls = "allow"
single_char_add_str = "allow"
single_char_pattern = "allow"
str_to_string = "allow"
todo = "deny"
too_many_lines = "allow"
unimplemented = "deny"
uninlined_format_args = "allow"
unnecessary_literal_bound = "allow"
unreadable_literal = "allow"
unwrap_used = "deny"
wildcard_imports = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(kani)"]
level = "warn"
priority = 0
[package]
authors = ["PAIML <team@paiml.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["os", "asynchronous"]
description = "Platform adapters for the Duende daemon framework (systemd, launchd, container, pepita, WOS)"
edition = "2024"
keywords = ["daemon", "systemd", "launchd", "docker", "microvm"]
license = "MIT"
name = "duende-platform"
readme = "README.md"
repository = "https://github.com/paiml/duende"
resolver = "2"
version = "0.2.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.nix]
features = ["process", "signal"]
version = "0.29"