# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/w56q7aq
簡化 Rust 項目配置:探索 cargo-generate
啓動一個新的 Rust 項目就像運行 cargo new 一樣簡單,但是當你的項目需要特定的配置 (比如嵌入式開發) 時,這種簡單性可能會成爲一把雙刃劍。這就是 cargo-generate 發揮作用的地方,它作爲一個通用的項目模板工具,用自定義模板簡化了 Rust 項目的設置。什麼是 cargo-generate?cargo-generate 是一個開發人員工具,它使你能夠從存儲在 Git 存儲 ⌘ Read more