file_sql 0.2.1

一个简单的数据持久化工具
Documentation
1
2
3
4
5
6
7
8
9
10
11
@Main
{ 
    @Bind($.url)("https://github.com/rust-lang/crates.io-index")
    @File("E:/Rust/.cargo/token.txt")
    {
        @BindRoot($.token)($.content)
    }
    @Command("cargo publish --index $.url --token $.token")
    @Println("发布成功")
    @Println("")
}