【Rust日报】2024-05-05 用于验证Rust代码正确性的工具
Verus
verus 是一种用于验证 rust 编写的代码正确性的工具。开发者需要编写代码应该做什么的规范,verus 会静态检查 rust 代码是否始终满足所有可能执行路径的规范。
Verus 不添加运行时检查,而是依赖于强大的求解器来证明代码的正确性。目前,Verus 支持 Rust 的一个子集(正在扩展中),在某些情况下,它允许开发者超越标准的 Rust 类型系统,进行静态检查,例如操作原始指针。
GitHub: https://www.php.cn/link/109ea5d046f5ff9ed62a35991fc7af53
cvtek
cvtek 是一个使用 TOML 文件制作简历的工具。以下是一个示例:
[header]full_name = "John Doe"email_addr = "john@doe.com"github_username = "github"linkedin_username = "linkedin"location = "Some Place, Earth"phone_number = "1234567890"<p>[[education]]course_name = "Bachelor of Technology in Computer Science"timeline = "August 2003 - July 2007"university_name = "University at My Place"university_link = "<a href="https://www.php.cn/link/2bada0d8cffac40c988e44a273ba58d7">https://www.php.cn/link/2bada0d8cffac40c988e44a273ba58d7</a>"location = "Another Place, Earth"course_grade = "A"points = ["Did some useful work Y", "Did some useful work Z"]</p><p>[[experience]]comp_name = "Company ABC"comp_link = "<a href="https://www.php.cn/link/1ecb6468735bde11b1d125b787158088">https://www.php.cn/link/1ecb6468735bde11b1d125b787158088</a>"exp_name = "Engineer"timeline = "August 2008 - Present"location = "Another place, Earth"points = ["I joined this when i had mood to join", "I joined this to prove myself", "I achieved ABC here"]</p><p>[[projects]]title = "My good project XYZ"timeline = "January 2006 - Present"project_link = "<a href="https://www.php.cn/link/4c7318c9d14f1ac6f4826d46646d2551">https://www.php.cn/link/4c7318c9d14f1ac6f4826d46646d2551</a>"description = "Some incredible project that I created"points = ["I created this when i had mood to create", "I created this to prove myself"]</p><p>[skills]Technologies = "A, B, C, D, E, F, G, H, whatever"Frameworks = "ABC, DEF, GHI, JKL, whatever"登录后复制
