libkernaux/bindings/rust/kernaux/Cargo.toml

31 lines
792 B
TOML
Raw Normal View History

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