CLI tool for migrating PDS

Init commit

nel.pet 4cef3ede

+1
.gitignore
···
+
/target
+7
Cargo.lock
···
+
# This file is automatically @generated by Cargo.
+
# It is not intended for manual editing.
+
version = 4
+
+
[[package]]
+
name = "pds-migrate"
+
version = "0.1.0"
+6
Cargo.toml
···
+
[package]
+
name = "pds-migrate"
+
version = "0.1.0"
+
edition = "2021"
+
+
[dependencies]
+3
src/main.rs
···
+
fn main() {
+
println!("Hello, world!");
+
}