Basic args rust parsing.

This commit is contained in:
Tomasz Półgrabia 2025-01-13 22:02:30 +01:00
parent 67c1a42044
commit 27b2b1b11e
4 changed files with 70 additions and 0 deletions

25
2025/01/rust_demo1/Cargo.lock generated Normal file
View file

@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
[[package]]
name = "rust_demo1"
version = "0.1.0"
dependencies = [
"getopts",
]
[[package]]
name = "unicode-width"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"