Bump version to 0.1.1 and enhance IP detection with timeout support - Update version in Cargo.toml and Cargo.lock to 0.1.1 - Update .DEFAULT_GOAL in Makefile to 'release' - Update Makefile to synchronize version in README.md - Change default DNS port from 80 to 53 in IP detection - Add `guess_local_ip_with_timeout` function with configurable timeout - Add `list_all_ips` function to list all non-loopback IP addresses - Add `find_process_using_port` function to identify processes using specific ports - Reorder parameters in `find_process_using_port` for better API design - Update documentation and examples in README.md and lib.rs - Add version.txt file to track current version - Minor code improvements and test updates
20 lines
519 B
TOML
20 lines
519 B
TOML
[package]
|
|
name = "pmoutils"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
description = "Utilitaires système pour la gestion des adresses IP et des processus"
|
|
homepage = "https://gargoton.petite-maison-orange.fr/pmo/pmoutils"
|
|
repository = "https://gargoton.petite-maison-orange.fr/pmo/pmoutils"
|
|
license = "CECILL-2.1"
|
|
readme = "README.md"
|
|
keywords = ["network", "ip", "process", "system"]
|
|
categories = ["os", "filesystem"]
|
|
|
|
[dependencies]
|
|
get_if_addrs = "0.5.3"
|
|
os_info = "3.8"
|
|
netstat2 = "0.11"
|
|
sysinfo = "0.30"
|
|
users = "0.11"
|