unistructgen 0.2.2

A powerful Rust code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
# ๐Ÿš€ UniStructGen

> NOTE: This README is archived. See `README.md` for the current documentation.

<div align="center">

**Transform JSON into Type-Safe Rust Structs โ€” At Compile Time**

[![Crates.io](https://img.shields.io/crates/v/unistructgen?style=flat-square)](https://crates.io/crates/unistructgen)
[![Documentation](https://img.shields.io/docsrs/unistructgen?style=flat-square)](https://docs.rs/unistructgen)
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue?style=flat-square)](LICENSE-MIT)
[![Build Status](https://img.shields.io/github/workflow/status/maxBogovick/unistructgen/CI?style=flat-square)](https://github.com/maxBogovick/unistructgen/actions)

[Quick Start](#-quick-start) โ€ข [Examples](#-real-world-examples) โ€ข [Documentation](QUICKSTART.md) โ€ข [API Docs](https://docs.rs/unistructgen)

</div>

---

## ๐Ÿ’ก Why UniStructGen?

Stop writing boilerplate structs by hand. Stop wrestling with `serde_json::Value`. Stop maintaining types that drift out of sync with your APIs.

**UniStructGen generates perfectly typed Rust structs from JSON โ€” automatically, at compile time, with zero runtime overhead.**

### The Problem

```rust
// โŒ Before: Manual struct definition, error-prone, tedious
#[derive(Deserialize)]
struct User {
    pub id: i64,                    // Is this i64 or u64?
    pub name: String,
    pub email: String,
    pub created_at: String,         // Should this be DateTime?
    // Did the API add new fields? Who knows! ๐Ÿคท
}

// Parsing untyped JSON
let data: serde_json::Value = serde_json::from_str(json)?;
let id = data["user"]["id"].as_i64().unwrap();  // ๐Ÿ’ฅ Runtime panic waiting to happen
```

### The Solution

```rust
// โœ… After: One line. Compile-time safe. Always in sync.
use unistructgen_macro::struct_from_external_api;

struct_from_external_api! {
    struct_name = "User",
    url_api = "https://api.example.com/users/1"
}

// That's it! Fully typed struct generated at compile time:
// - Smart type detection (DateTime, UUID, etc.)
// - Automatic serde derives
// - Field name conversion (camelCase โ†’ snake_case)
// - Nested object support
// - Array handling
```

---

## โœจ Key Features

<table>
<tr>
<td width="50%">

### ๐ŸŽฏ **Compile-Time Magic**
Generate structs during compilation. Zero runtime overhead, maximum type safety.

### ๐ŸŒ **Live API Integration**
Fetch schemas from external APIs at build time. Always stay in sync.

### ๐Ÿ”’ **Authentication Support**
Bearer tokens, API keys, and Basic Auth โ€” secure API access built-in.

### ๐Ÿง  **Smart Type Inference**
Automatically detects UUIDs, DateTimes, emails, URLs, and more.

</td>
<td width="50%">

### ๐Ÿ”„ **Array Auto-Detection**
Returns an array? We automatically extract the item type.

### ๐ŸŽจ **Beautiful Code Gen**
Clean, idiomatic Rust with proper formatting and documentation.

### ๐Ÿ› ๏ธ **CLI + Macros**
Use as proc-macros or a standalone CLI tool โ€” your choice.

</td>
</tr>
</table>

---

## โšก Quick Start

### Installation

Add to your `Cargo.toml`:

```toml
[dependencies]
unistructgen-macro = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# Optional: for advanced types
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["serde", "v4"] }
```

### 30-Second Demo

```rust
use unistructgen_macro::generate_struct_from_json;

// Define once, use everywhere
generate_struct_from_json! {
    name = "Product",
    json = r#"{
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "name": "Laptop",
        "price": 999.99,
        "inStock": true,
        "createdAt": "2024-01-15T10:30:00Z"
    }"#
}

fn main() {
    let product = Product {
        id: uuid::Uuid::new_v4(),
        name: "Gaming Mouse".to_string(),
        price: 49.99,
        in_stock: true,  // Auto-converted from 'inStock'
        created_at: chrono::Utc::now(),
    };

    println!("{}", serde_json::to_string_pretty(&product).unwrap());
}
```

**Generated code:**
```rust
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct Product {
    pub id: uuid::Uuid,
    pub name: String,
    pub price: f64,
    #[serde(rename = "inStock")]
    pub in_stock: bool,
    #[serde(rename = "createdAt")]
    pub created_at: chrono::DateTime<chrono::Utc>,
}
```

---

## ๐ŸŽฏ Real-World Examples

### Example 1: API Client Development

```rust
use unistructgen_macro::struct_from_external_api;

// Generate from GitHub API
struct_from_external_api! {
    struct_name = "Repository",
    url_api = "https://api.github.com/repos/rust-lang/rust"
}

// Generate from JSONPlaceholder
struct_from_external_api! {
    struct_name = "Post",
    url_api = "https://jsonplaceholder.typicode.com/posts/1"
}

fn main() {
    // Use your perfectly typed structs!
    let repo = Repository { /* ... */ };
    let post = Post { /* ... */ };
}
```

### Example 2: Array Responses (Auto-Detected!)

```rust
// API returns an array? No problem!
struct_from_external_api! {
    struct_name = "Todo",
    url_api = "https://jsonplaceholder.typicode.com/todos"
    // Automatically extracts first element to infer structure
}

// Generated:
// pub struct Todo {
//     pub user_id: i64,
//     pub id: i64,
//     pub title: String,
//     pub completed: bool,
// }
```

### Example 3: Configuration Files

```rust
#[json_struct(name = "Config")]
const SCHEMA: &str = r#"{
    "database": {
        "host": "localhost",
        "port": 5432,
        "ssl": true
    },
    "api": {
        "baseUrl": "https://api.example.com",
        "timeout": 30000
    }
}"#;

fn main() {
    let config = Config {
        database: Database {
            host: "prod.example.com".to_string(),
            port: 5432,
            ssl: true,
        },
        api: Api {
            base_url: "https://api.example.com".to_string(),
            timeout: 30000,
        },
    };
}
```

### Example 4: API Authentication ๐Ÿ”’

```rust
// Bearer Token (OAuth2, JWT)
struct_from_external_api! {
    struct_name = "User",
    url_api = "https://api.example.com/user",
    auth_bearer = "your_bearer_token_here"
}

// API Key in Custom Header
struct_from_external_api! {
    struct_name = "Data",
    url_api = "https://api.example.com/data",
    auth_api_key = "X-API-Key:your_api_key_here"
}

// HTTP Basic Authentication
struct_from_external_api! {
    struct_name = "Resource",
    url_api = "https://api.example.com/resource",
    auth_basic = "username:password"
}
```

### Example 5: Advanced Options

```rust
struct_from_external_api! {
    struct_name = "ApiResponse",
    url_api = "https://api.example.com/data",

    // Authentication
    auth_bearer = "your_token",   // Bearer token auth

    // Customization
    timeout = 10000,              // Request timeout (ms)
    max_depth = 5,                // Limit nesting depth
    optional = true,              // Make fields Option<T>
    default = true,               // Add Default derive
    serde = true,                 // Serde derives (default)
}
```

---

## ๐ŸŽช Use Cases

<table>
<tr>
<td>

### ๐ŸŒ **API Clients**
Generate types from REST APIs, GraphQL schemas, or any JSON endpoint.

### โš™๏ธ **Microservices**
Keep service contracts in sync by generating from shared schemas.

### ๐Ÿ“Š **Data Pipelines**
Type-safe ETL processes with validated data structures.

</td>
<td>

### ๐Ÿงช **Testing**
Generate mock data structures from API fixtures.

### ๐Ÿ“ **Documentation**
Auto-generate types from OpenAPI/Swagger specs.

### ๐Ÿ”„ **Schema Evolution**
Stay in sync with evolving external APIs automatically.

</td>
</tr>
</table>

---

## ๐Ÿ“ฆ Three Ways to Use

### 1๏ธโƒฃ Proc Macro (Recommended)

Perfect for schemas known at compile time:

```rust
use unistructgen_macro::generate_struct_from_json;

generate_struct_from_json! {
    name = "User",
    json = r#"{"id": 1, "name": "Alice"}"#
}
```

**Pros:**
- โœ… Zero runtime overhead
- โœ… Compile-time validation
- โœ… IDE autocomplete
- โœ… Type checking

### 2๏ธโƒฃ External API Macro

Fetch schemas from live endpoints:

```rust
struct_from_external_api! {
    struct_name = "User",
    url_api = "https://api.example.com/schema"
}
```

**Pros:**
- โœ… Always in sync with API
- โœ… One-line integration
- โœ… Compile-time fetching
- โœ… No build scripts needed

### 3๏ธโƒฃ CLI Tool

For build pipelines and pre-generation:

```bash
# Install
cargo install unistructgen

# Generate from file
unistructgen generate -i schema.json -o models.rs -n User

# Generate from URL
curl https://api.example.com/schema | unistructgen generate -n User

# Watch mode (coming soon)
unistructgen watch -i schema.json -o models.rs
```

**Pros:**
- โœ… Language-agnostic
- โœ… CI/CD integration
- โœ… Commit generated code
- โœ… Review changes in PRs

---

## ๐Ÿ”ฅ What Makes It Special?

### Smart Type Detection

UniStructGen doesn't just map JSON types to Rust primitives. It **understands** your data:

```json
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "email": "user@example.com",
  "website": "https://example.com",
  "created": "2024-01-15T10:30:00Z",
  "tags": ["rust", "codegen"]
}
```

**Generates:**
```rust
pub struct Item {
    pub id: uuid::Uuid,              // โœจ Detected as UUID
    pub email: String,               // Could add email validation
    pub website: url::Url,           // โœจ Detected as URL
    pub created: chrono::DateTime<chrono::Utc>, // โœจ Detected as DateTime
    pub tags: Vec<String>,
}
```

### Automatic Array Handling

```rust
// API returns: [{"id": 1, "name": "Todo 1"}, {"id": 2, "name": "Todo 2"}]
struct_from_external_api! {
    struct_name = "Todo",
    url_api = "https://api.example.com/todos"
}
// Automatically extracts item structure from array!
```

### Nested Object Support

```json
{
  "user": {
    "profile": {
      "address": {
        "city": "New York"
      }
    }
  }
}
```

**Generates:**
```rust
pub struct Root {
    pub user: User,
}

pub struct User {
    pub profile: Profile,
}

pub struct Profile {
    pub address: Address,
}

pub struct Address {
    pub city: String,
}
```

### Field Name Sanitization

Automatically converts JSON naming to Rust conventions:

| JSON Field | Rust Field | Attribute |
|------------|------------|-----------|
| `userName` | `user_name` | `#[serde(rename = "userName")]` |
| `user-id` | `user_id` | `#[serde(rename = "user-id")]` |
| `123field` | `_123field` | - |
| `type` | `type_` | - (keyword) |

---

## ๐Ÿ“Š Comparison

| Feature | UniStructGen | serde_json::Value | quicktype | json2rust |
|---------|--------------|-------------------|-----------|-----------|
| **Compile-time generation** | โœ… | โŒ | โŒ | โŒ |
| **Live API fetching** | โœ… | โŒ | โœ… | โŒ |
| **Zero runtime cost** | โœ… | โŒ | โœ… | โœ… |
| **Smart type detection** | โœ… | โŒ | โœ… | โš ๏ธ |
| **Proc macro support** | โœ… | โŒ | โŒ | โŒ |
| **Array auto-detection** | โœ… | โŒ | โœ… | โŒ |
| **Rust-specific** | โœ… | โœ… | โŒ (multi-lang) | โœ… |
| **Nested objects** | โœ… | โš ๏ธ | โœ… | โœ… |
| **CLI + Library** | โœ… | โŒ | โœ… (CLI only) | โœ… (web) |

---

## ๐ŸŽ“ Learning Resources

- ๐Ÿ“– **[Quick Start Guide]QUICKSTART.md** - Get started in 5 minutes
- ๐Ÿ“š **[Complete Examples]EXAMPLES.md** - Real-world usage patterns
- ๐Ÿ”ง **[API Documentation]https://docs.rs/unistructgen** - Full API reference
- ๐ŸŒ **[External API Guide]docs/EXTERNAL_API_GUIDE.md** - Advanced API integration
- ๐ŸŽฏ **[Best Practices]docs/BEST_PRACTICES.md** - Tips and tricks

---

## ๐Ÿ—๏ธ Architecture

UniStructGen follows a clean, modular architecture:

```
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                   Your Code                         โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”‚
โ”‚  โ”‚ Proc Macros  โ”‚  โ”‚     CLI      โ”‚  โ”‚   API    โ”‚  โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”˜  โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
          โ”‚                  โ”‚               โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              Core Pipeline                           โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”‚
โ”‚  โ”‚Parser โ”‚โ”€โ”€โ–ถโ”‚  IR  โ”‚โ”€โ”€โ–ถโ”‚ Codegen โ”‚โ”€โ”€โ–ถโ”‚  Output โ”‚  โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”˜   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
```

**Modules:**
- `core` - Intermediate Representation (IR) and traits
- `parsers/json_parser` - JSON โ†’ IR conversion
- `codegen` - IR โ†’ Rust code generation
- `proc-macro` - Procedural macros
- `cli` - Command-line interface

---

## ๐Ÿš€ Quick Start Examples

### Example A: From Inline JSON

```rust
use unistructgen_macro::generate_struct_from_json;

generate_struct_from_json! {
    name = "Person",
    json = r#"{"name": "Alice", "age": 30}"#
}

let person = Person {
    name: "Bob".to_string(),
    age: 25,
};
```

### Example B: From External API

```rust
use unistructgen_macro::struct_from_external_api;

struct_from_external_api! {
    struct_name = "GithubUser",
    url_api = "https://api.github.com/users/octocat"
}

// Fully typed struct ready to use!
```

### Example C: From File (CLI)

```bash
# Create schema.json
echo '{"id": 1, "title": "Hello"}' > schema.json

# Generate
unistructgen generate -i schema.json -n Post -o post.rs

# Use in your code
# mod post;
# use post::Post;
```

### Example D: Attribute Macro

```rust
use unistructgen_macro::json_struct;

#[json_struct(name = "Settings")]
const CONFIG_SCHEMA: &str = r#"{
    "debug": true,
    "maxConnections": 100
}"#;

// Settings struct automatically generated
```

---

## ๐Ÿ’ผ Production Ready

UniStructGen is designed for production use:

### โœ… Type Safety
All generated code is fully typed and checked at compile time.

### โœ… Performance
Zero runtime overhead - all generation happens at compile time.

### โœ… Reliability
Comprehensive test suite with 100+ tests covering edge cases.

### โœ… Maintainability
Clean, idiomatic Rust output that's easy to read and modify.

### โœ… Flexibility
Customize derives, field types, and naming conventions.

---

## ๐Ÿ“ˆ Roadmap

### โœ… v0.1 - **Current**
- โœ… JSON parsing and struct generation
- โœ… Proc macro support (function-like & attribute)
- โœ… External API integration
- โœ… Authentication support (Bearer, API Key, Basic)
- โœ… Smart type inference
- โœ… Array auto-detection
- โœ… CLI tool

### ๐ŸŽฏ v0.2 - **Next**
- [ ] Merge multiple JSON samples
- [ ] OpenAPI/Swagger support
- [ ] GraphQL schema support
- [ ] Watch mode for file changes
- [ ] Builder pattern generation
- [ ] Validation derives

### ๐Ÿ”ฎ v1.0 - **Future**
- [ ] Markdown table parsing
- [ ] SQL DDL parsing
- [ ] TypeScript definitions export
- [ ] VSCode extension
- [ ] Web playground
- [ ] Plugin system

---

## ๐Ÿค Contributing

We welcome contributions! Here's how you can help:

1. ๐Ÿ› **Report Bugs** - Open an issue with reproduction steps
2. ๐Ÿ’ก **Suggest Features** - Share your ideas in discussions
3. ๐Ÿ“ **Improve Docs** - Help make docs clearer
4. ๐Ÿ”ง **Submit PRs** - Check [CONTRIBUTING.md]CONTRIBUTING.md

### Development Setup

```bash
# Clone repository
git clone https://github.com/maxBogovick/unistructgen
cd unistructgen

# Build
cargo build --workspace

# Test
cargo test --workspace

# Run examples
cargo run --example api-example
```

---

## ๐Ÿ“œ License

Licensed under either of:

- Apache License, Version 2.0 ([LICENSE-APACHE]LICENSE-APACHE)
- MIT License ([LICENSE-MIT]LICENSE-MIT)

at your option.

---

## ๐Ÿ™ Acknowledgments

Built with โค๏ธ by the Rust community.

Special thanks to:
- The [serde]https://serde.rs/ team for JSON serialization inspiration
- [quicktype]https://quicktype.io/ for schema generation ideas
- All contributors and users of UniStructGen

---

<div align="center">

**[โญ Star us on GitHub](https://github.com/maxBogovick/unistructgen)** โ€ข **[๐Ÿ“ฆ View on crates.io](https://crates.io/crates/unistructgen)** โ€ข **[๐Ÿ’ฌ Join Discussions](https://github.com/maxBogovick/unistructgen/discussions)**

Made with ๐Ÿฆ€ by Rust developers, for Rust developers.

</div>
# NOTE: This README is archived. See README.md for the current documentation.