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:
parent
4385b6556f
commit
e8261034df
3 changed files with 25 additions and 0 deletions
2
pkgs/rust/.gitignore
vendored
Normal file
2
pkgs/rust/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/Cargo.lock
|
||||
/target/
|
15
pkgs/rust/Cargo.toml
Normal file
15
pkgs/rust/Cargo.toml
Normal 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
8
pkgs/rust/src/lib.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
let result = 2 + 2;
|
||||
assert_eq!(result, 4);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue