My personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities.

feat: init workspace

suri.codes ff16150d c31f6bd3

verified
+65
+5
.gitignore
··· 11 11 # MSVC Windows builds of rustc generate these, which store debugging information 12 12 *.pdb 13 13 14 + 15 + 16 + # Added by cargo 17 + 18 + /target
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "filaments" 7 + version = "0.1.0"
+46
Cargo.toml
··· 1 + [workspace] 2 + members = [] 3 + 4 + 5 + [workspace.package] 6 + version = "0.1.0" 7 + edition = "2024" 8 + authors = ["suri.codes <suri312006@gmail.com>"] 9 + description = "Personal-Knowledge-System, with deeply integrated task tracking and long term goal planning capabilities." 10 + license = "GNU GPLv3" 11 + repository = "https://tangled.org/suri-codes/filaments" 12 + # once we have this up on my website 13 + # homepage = "" 14 + # documentation = "" 15 + readme = "README.md" 16 + keywords = ["PKS", "todo", "personal tools"] 17 + 18 + [workspace.lints.rust] 19 + unsafe_code = "forbid" 20 + missing_docs = "warn" 21 + 22 + [workspace.lints.clippy] 23 + pedantic = "deny" 24 + nursery = "deny" 25 + 26 + [workspace.dependencies] 27 + 28 + 29 + [package] 30 + name = "filaments" 31 + version.workspace = true 32 + edition.workspace = true 33 + authors.workspace = true 34 + description.workspace = true 35 + license.workspace = true 36 + repository.workspace = true 37 + # homepage.workspace = true 38 + # documentation.workspace = true 39 + readme.workspace = true 40 + keywords.workspace = true 41 + 42 + [lints] 43 + workspace = true 44 + 45 + [dependencies] 46 +
+7
src/main.rs
··· 1 + //! Filaments 2 + //! My (suri.codes) personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities. 3 + //! 4 + 5 + fn main() { 6 + println!("Hello, world!"); 7 + }