runique 2.0.0

A Django-inspired web framework for Rust with ORM, templates, and comprehensive security middleware
Documentation
1
2
3
4
5
6
7
8
9
10
# Exemples


```rust
use runique::migration::column::ColumnDef;
// Default: BINARY(255)
ColumnDef::new("token").binary();

// Override: BINARY(64)
ColumnDef::new("hash").binary_len(64);
```