[package]
edition = "2024"
name = "reovim-kernel"
version = "0.14.4"
authors = ["ds1sqe(dukim) <ds1sqe@mensakorea.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core kernel mechanisms for reovim (Linux kernel/ equivalent)"
readme = false
keywords = [
"vim",
"vi",
"neovim",
"editor",
"terminal",
]
categories = [
"text-editors",
"command-line-utilities",
]
license = "AGPL-3.0-only"
repository = "https://github.com/ds1sqe/reovim"
resolver = "2"
[features]
default = []
unstable-api = []
[lib]
name = "reovim_kernel"
path = "src/lib.rs"
[[test]]
name = "api_boundary_test"
path = "tests/api_boundary_test.rs"
[dependencies.reovim-arch]
version = "0.14.4"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "warn"
warnings = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]