Preliminary work

This commit is contained in:
Emerson Rosen-Jones 2025-05-26 00:20:44 -04:00
parent 67ed4524dc
commit 81eed730aa
3 changed files with 28 additions and 0 deletions

7
Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "bookmark-manager-rs"
version = "0.1.0"

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "bookmark-manager-rs"
version = "0.1.0"
edition = "2021"
[dependencies]

15
src/main.rs Normal file
View file

@ -0,0 +1,15 @@
struct Bookmark {
link: String,
comment: String,
}
/* Desired actions:
* - add new bookmark/reading list item
* - get bookmark
* - get RL item and remove/delist
* - ensure nothing is lost accidentally
*/
fn main() {
println!("Hello, world!");
}