what is this

This commit is contained in:
lda
2025-11-17 00:41:33 +07:00 Unverified
parent 6405bb5bf7
commit 3c35255ddd
3 changed files with 27 additions and 8 deletions
+14 -3
View File
@@ -21,8 +21,19 @@
use super::AddrInfo;
pub async fn get(dev: Option<&str>) -> anyhow::Result<Vec<AddrInfo>> {
let mut cmd = tokio::process::Command::new("ip");
cmd.args(["-j", "address", "show"]);
pub async fn get() -> Vec<AddrInfo> {
todo!()
if let Some(d) = dev {
cmd.args(["dev", d]);
}
let output = cmd.output().await?;
if !output.status.success() {
anyhow::bail!(String::from_utf8_lossy(&output.stderr).into_owned());
}
Ok(serde_json::from_slice(&output.stdout)?)
}
+5
View File
@@ -118,3 +118,8 @@ async fn ball_compare_backends() -> anyhow::Result<()> {
Ok(())
}
#[tokio::test]
async fn cidr_filter() {
unimplemented!("never. i aint add what i dont need")
}
+8 -5
View File
@@ -2,11 +2,14 @@
from pathlib import Path
root = Path(__file__).parent.parent
static = root / "static" # change "assets" to your folder
out_rs = root / "src" / "assets.rs"
static = root / "static"
src = root / "src"
out_rs = src / "assets.rs"
assert 'name = "wakey"' in (root / "Cargo.toml").read_text(
encoding="utf-8"
), "uhh how do i explain this"
def sanitize(name: str) -> str:
# Valid Rust identifiers: letters, digits, underscores; no starting digit
@@ -35,7 +38,7 @@ class RsAssetFile:
const_name = sanitize(self.path.name).upper()
return (
f"pub const {const_name}: &str = "
f'include_str!("{self.path.relative_to(out_rs.parent, walk_up=True).as_posix()}");'
f'include_str!("{self.path.relative_to(src, walk_up=True).as_posix()}");'
)
# specify walk_up to have .. in yo path
@@ -62,4 +65,4 @@ rs_code = "// generated with ./scripts/map_static.py\n" + str(
RsAssetModule(static, True)
)
out_rs.write_text(rs_code, encoding="utf-8")
print(f"written to {out_rs}")
print(f"written to {out_rs.relative_to(Path.cwd(), walk_up=True)}")