leviath-sys 0.1.0

Platform/OS-specific system calls for Leviath, isolated behind a cross-platform API: file permissions, detached process spawning, signals, controlling TTY, and executable resolution
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.97"
name = "leviath-sys"
version = "0.1.0"
authors = ["Gerald McAlister <gemisis@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform/OS-specific system calls for Leviath, isolated behind a cross-platform API: file permissions, detached process spawning, signals, controlling TTY, and executable resolution"
homepage = "https://leviath.dev"
readme = "README.md"
keywords = [
    "agents",
    "llm",
    "ai",
    "runtime",
    "context",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/GEMISIS/leviath"
resolver = "2"

[features]
default = ["keychain"]
keychain = [
    "dep:keyring",
    "dep:keyring-core",
]

[lib]
name = "leviath_sys"
path = "src/lib.rs"

[dependencies.keyring]
version = "4"
optional = true

[dependencies.keyring-core]
version = "1"
optional = true

[dependencies.tracing]
version = "0.1"

[dev-dependencies.temp-env]
version = "0.3"

[dev-dependencies.tempfile]
version = "3"

[target."cfg(unix)".dependencies.nix]
version = "0.31"
features = [
    "signal",
    "process",
    "user",
    "socket",
]
default-features = false

[lints.clippy]
string_slice = "deny"

[lints.rust]
unsafe_code = "forbid"