Skip to content
On this page

2023/06 5週目

Rust

  • https://github.com/SeaQL/sea-orm
    • 非同期ORM
  • https://github.com/rust-lang/rfcs/pull/3424
    • 単一ファイルで実行できる機能のRFCがマージされた
    • rust
      #!/usr/bin/env cargo
        
        //! ```cargo
        //! [dependencies]
        //! clap = { version = "4.2", features = ["derive"] }
        //! ```
        
        use clap::Parser;
        
        #[derive(Parser, Debug)]
        #[clap(version)]
        struct Args {
            #[clap(short, long, help = "Path to config")]
            config: Option<std::path::PathBuf>,
        }
        
        fn main() {
            let args = Args::parse();
            println!("{:?}", args);
        }

Go

Wasm

Frontend

MongoDB

Deno

Go

AI

CI

k8s

その他

Released under the MIT License.