2022-01-30 18:19:27 -05:00
|
|
|
[package]
|
|
|
|
name = "kernaux"
|
2022-12-05 08:46:41 -05:00
|
|
|
version = "0.6.1"
|
2022-01-30 18:19:27 -05:00
|
|
|
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Safe binding to libkernaux - auxiliary library for kernel development"
|
|
|
|
readme = true
|
2022-06-08 21:25:27 -04:00
|
|
|
homepage = "https://github.com/tailix/libkernaux/tree/master/bindings/rust"
|
|
|
|
repository = "https://github.com/tailix/libkernaux/tree/master/bindings/rust"
|
2022-01-30 18:19:27 -05:00
|
|
|
license = "MIT"
|
|
|
|
keywords = ["ffi", "embedded", "bindings"]
|
|
|
|
categories = ["api-bindings", "embedded", "parsing"]
|
|
|
|
publish = true
|
|
|
|
|
2022-06-13 03:02:05 -04:00
|
|
|
[features]
|
|
|
|
default = ["cmdline", "ntoa"]
|
|
|
|
cmdline = ["kernaux-sys/cmdline"]
|
|
|
|
ntoa = ["kernaux-sys/ntoa"]
|
|
|
|
|
2022-05-31 15:11:10 -04:00
|
|
|
[dependencies]
|
|
|
|
ctor = "0.1.22"
|
|
|
|
|
2022-01-30 23:40:35 -05:00
|
|
|
[dependencies.kernaux-sys]
|
2022-12-05 08:46:41 -05:00
|
|
|
version = "0.6.1"
|
2022-06-13 03:02:05 -04:00
|
|
|
default-features = false
|
2022-01-30 23:40:35 -05:00
|
|
|
path = "../kernaux-sys"
|
2022-05-31 15:11:10 -04:00
|
|
|
|
|
|
|
[dependencies.libc]
|
|
|
|
version = "0.2.113"
|
|
|
|
default-features = false
|