Adjusted project data.

Properly pointed to the repository location.

Changed the rust edition.
This commit is contained in:
2025-07-29 17:54:46 -04:00
parent 4357a3aff3
commit a370d13f7a
9 changed files with 114 additions and 196 deletions

View File

@ -3,10 +3,7 @@
use binding::c_enum;
c_enum!
{
c_enum! {
/// Test enum is a simple enum testing the
/// capabilities of creating a C enum.
enum TestEnum: i32
@ -22,8 +19,6 @@ c_enum!
}
}
pub fn main()
{
let cenum: TestEnum;

View File

@ -3,10 +3,7 @@
use binding::c_flags;
c_flags!
{
c_flags! {
/// A sample of flags useful for the EvDev library.
flags ReadFlags: u32
{
@ -25,7 +22,6 @@ c_flags!
}
}
pub fn main()
{
let flag: ReadFlags;