1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-03-31 17:25:22 -04:00

Initialize Cargo package

This commit is contained in:
Alex Kotov 2022-01-18 00:51:25 +05:00
parent 4385b6556f
commit e8261034df
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
3 changed files with 25 additions and 0 deletions

2
pkgs/rust/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/Cargo.lock
/target/

15
pkgs/rust/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "kernaux"
version = "0.0.0"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2021"
description = "Auxiliary library for kernel development"
readme = false
homepage = "https://github.com/tailix/libkernaux"
repository = "https://github.com/tailix/libkernaux.git"
license = "MIT"
keywords = ["ffi", "no_std", "no-std", "embedded", "bindings"]
categories = ["api-bindings", "embedded", "external-ffi-bindings", "no-std", "parsing"]
publish = true
[dependencies]

8
pkgs/rust/src/lib.rs Normal file
View file

@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}