[package]
edition = "2024"
rust-version = "1.85.0"
name = "viola"
version = "0.0.0"
build = false
include = [
"/LICENSES/",
"/src/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "!vaporware"
documentation = "https://docs.rs/viola"
readme = false
categories = [
"asynchronous",
"filesystem",
"network-programming",
"os::linux-apis",
"os::windows-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/d5ng4i/viola"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = [
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
]
[lib]
name = "viola"
path = "src/lib.rs"
[target.'cfg(target_os = "linux")'.dependencies.rustix]
version = "1.1.2"
features = [
"std",
"io_uring",
]
default-features = false
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.62.2"
features = [
"std",
"Win32_Storage_FileSystem",
]
default-features = false
[lints.rust]
warnings = "deny"