[package]
edition = "2021"
name = "secure-exec-kernel"
version = "0.3.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared kernel plane for secure-exec native and browser sidecars"
readme = false
license = "Apache-2.0"
repository = "https://github.com/rivet-dev/secure-exec"
[lib]
name = "secure_exec_kernel"
path = "src/lib.rs"
[[test]]
name = "agentos_read_only"
path = "tests/agentos_read_only.rs"
[[test]]
name = "api_surface"
path = "tests/api_surface.rs"
[[test]]
name = "bridge"
path = "tests/bridge.rs"
[[test]]
name = "bridge_support"
path = "tests/bridge_support.rs"
[[test]]
name = "command_registry"
path = "tests/command_registry.rs"
[[test]]
name = "default_deny_guards"
path = "tests/default_deny_guards.rs"
[[test]]
name = "device_layer"
path = "tests/device_layer.rs"
[[test]]
name = "dns_resolution"
path = "tests/dns_resolution.rs"
[[test]]
name = "fd_table"
path = "tests/fd_table.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "kernel_integration"
path = "tests/kernel_integration.rs"
[[test]]
name = "loopback_routing"
path = "tests/loopback_routing.rs"
[[test]]
name = "mount_plugin"
path = "tests/mount_plugin.rs"
[[test]]
name = "mount_table"
path = "tests/mount_table.rs"
[[test]]
name = "permissions"
path = "tests/permissions.rs"
[[test]]
name = "pipe_manager"
path = "tests/pipe_manager.rs"
[[test]]
name = "poll"
path = "tests/poll.rs"
[[test]]
name = "process_table"
path = "tests/process_table.rs"
[[test]]
name = "pty"
path = "tests/pty.rs"
[[test]]
name = "resource_accounting"
path = "tests/resource_accounting.rs"
[[test]]
name = "root_fs"
path = "tests/root_fs.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "socket_table"
path = "tests/socket_table.rs"
[[test]]
name = "stdio_devices"
path = "tests/stdio_devices.rs"
[[test]]
name = "tcp_data_plane"
path = "tests/tcp_data_plane.rs"
[[test]]
name = "tcp_listener"
path = "tests/tcp_listener.rs"
[[test]]
name = "udp_datagram"
path = "tests/udp_datagram.rs"
[[test]]
name = "unix_domain_socket"
path = "tests/unix_domain_socket.rs"
[[test]]
name = "user"
path = "tests/user.rs"
[[test]]
name = "vfs"
path = "tests/vfs.rs"
[[test]]
name = "virtual_process"
path = "tests/virtual_process.rs"
[dependencies.base64]
version = "0.22"
[dependencies.getrandom]
version = "0.2"
[dependencies.hickory-resolver]
version = "0.26.0-beta.3"
[dependencies.secure-exec-bridge]
version = "0.3.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
]