1
0
Fork 0

bump rust edition 2021 -> 2024

This commit is contained in:
Kim, Jimin 2025-06-03 16:17:54 +09:00
parent 62aed211b7
commit 5be2a1db8e
Signed by: pomp
GPG key ID: D3932F82A0667A3B
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,8 @@
[package]
name = "sudo-boo"
description = "A program that scare users when running with root permission"
version = "1.0.2"
edition = "2021"
version = "1.0.3"
edition = "2024"
license-file = "LICENSE"
keywords = ["boo"]
categories = ["command-line-utilities"]

View file

@ -1,5 +1,5 @@
#[link(name = "c")]
extern "C" {
unsafe extern "C" {
fn getuid() -> u32;
fn geteuid() -> u32;
}