auto-rust
is an experimental project that aims to automatically generate Rust code with LLM (Large Language Models) during compilation, utilizing procedural macros.
Please note that Auto-Rust is currently under development and is not yet suitable for production use. While you are welcome to try it out and provide feedback, we caution that it may have an incomplete implementation and may not function as intended.
toml
[dependencies]
auto-rust = "0.1.0"
You need to create a .env file in the root of your project with the following content:
bash
OPENAI_API_KEY=<your-openai-api-key>
```rust use autorust::autoimplement;
fn is_email(input: String) -> bool { todo!() }
fn main() { let result = isemail("bregyminsky.cc".tostring()); println!("result: {}", result); } ```
Contributions are welcome. Feel free to open an issue if you have any questions or want to suggest an improvement.