soop3 0.10.0

the based http fileserver (rust port)
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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
# PLAN.md for soop3 (Rust Port)

## project overview

**soop3** is a high-performance, memory-safe port of soop2 from D to Rust. We maintain all original functionality while leveraging Rust's zero-cost abstractions and safety guarantees.

**core philosophy:**
- preserve all soop2 features and behavior exactly
- use high-quality abstractions to reduce complexity
- maintain elegant, self-documenting code organization
- prioritize performance and memory safety
- lowercase comments for consistency
- well-thought-out architecture with clear separation of concerns

## original soop2 analysis

### key features preserved
- http file browsing with minimalist ui
- http file upload (post) support
- configuration from toml file
- support for http basic auth for uploads/downloads/both
- cli tool interface identical to original
- configurable server with same toml format

### technical architecture (d → rust)
- **web framework**: vibrant.d → axum + tower
- **cli parsing**: commandr → clap with derive macros
- **config**: toml parsing → serde + figment
- **logging**: minlog → tracing ecosystem
- **assets**: embedded static files → rust-embed
- **utilities**: custom d code → idiomatic rust implementations

## library selection rationale

### http server: axum + tower + tokio

**axum** (primary web framework)
```rust
// elegant request handling with type-safe extractors
pub async fn serve_file(
    State(config): State<AppConfig>,
    Path(file_path): Path<String>
) -> Result<Response, AppError> {
    // self-documenting function signature
    // zero boilerplate request parsing
}
```

**justification:**
- **high-quality abstractions**: built on tower's service/middleware model
- **elegant api**: type-safe extractors eliminate manual request parsing
- **performance**: zero-cost abstractions over hyper/tokio
- **ecosystem**: first-class integration with tower middleware
- **maintainability**: excellent error messages, clear documentation
- **familiarity**: similar patterns to vibrant.d routing

**tower** (middleware composition)
- **elegant composition**: functional middleware composition
- **rich ecosystem**: auth, compression, logging, rate limiting
- **type-safe**: compile-time service composition
- **matches original**: auth and logging middleware patterns

**tokio** (async runtime)
- **performance**: best-in-class async runtime, better than d's fibers
- **ecosystem**: de facto standard, excellent ecosystem integration
- **abstractions**: high-level apis (fs, net) with zero-cost async

### configuration: serde + toml + figment

**serde + toml** (core configuration)
```rust
#[derive(Deserialize, Debug, Clone)]
pub struct ServerConfig {
    pub host: Option<String>,          // cli override support
    pub port: Option<u16>,             // optional with sensible defaults
    pub public_dir: Option<PathBuf>,   // type-safe paths
    pub enable_upload: Option<bool>,   // explicit option types
}

#[derive(Deserialize, Debug, Clone)]
pub struct SecurityConfig {
    pub username: Option<String>,
    pub password: Option<String>,
    pub policy: SecurityPolicy,
}

#[derive(Deserialize, Debug, Clone)]
pub enum SecurityPolicy {
    AuthenticateNone,
    AuthenticateUpload,
    AuthenticateDownload,
    AuthenticateAll,
}
```

**justification:**
- **zero boilerplate**: derive macros eliminate manual parsing code
- **type safety**: compile-time guarantees vs d's runtime toml parsing
- **elegant**: clean struct mapping with optional fields
- **maintains compatibility**: exact same toml format as soop2

**figment** (configuration merging)
```rust
// elegant merging: config file < environment < cli args
let config: AppConfig = Figment::new()
    .merge(Toml::file_exact("config.toml"))
    .merge(Env::prefixed("SOOP_"))
    .merge(Serialized::defaults(cli_args))
    .extract()?;
```

**justification:**
- **elegant abstraction**: handles complex precedence rules cleanly
- **maintains pattern**: cli args override config file seamlessly
- **rich features**: environment variables, multiple sources, validation
- **zero complexity**: eliminates manual override logic

### cli parsing: clap v4 with derive macros

```rust
#[derive(Parser, Debug)]
#[command(name = "soop3", version = env!("CARGO_PKG_VERSION"))]
#[command(about = "the based http fileserver")]
pub struct Cli {
    /// public directory to serve
    #[arg(default_value = ".")]
    pub public_dir: PathBuf,
    
    /// enable file uploads
    #[arg(short = 'u', long)]
    pub enable_upload: bool,
    
    /// host to listen on
    #[arg(short = 'l', long, default_value = "0.0.0.0")]
    pub host: String,
    
    /// port to listen on
    #[arg(short = 'p', long, default_value = "8000")]
    pub port: u16,
    
    /// config file to use
    #[arg(short = 'c', long)]
    pub config_file: Option<PathBuf>,
    
    /// increase verbosity
    #[arg(short = 'v', long, action = clap::ArgAction::Count)]
    pub verbose: u8,
    
    /// decrease verbosity
    #[arg(short = 'q', long, action = clap::ArgAction::Count)]
    pub quiet: u8,
}
```

**justification:**
- **derive macros**: eliminate boilerplate vs manual commandr setup
- **self-documenting**: help text embedded directly in code
- **type safety**: automatic validation and conversion
- **exact api**: maintains soop2's cli interface precisely
- **rich features**: built-in help generation, validation, subcommands

### logging: tracing ecosystem

**tracing** (structured logging)
```rust
#[instrument(skip(state), fields(path = %request_path))]
pub async fn handle_file_request(
    state: AppState,
    request_path: String
) -> Result<Response, AppError> {
    info!("processing file request");
    
    // automatic span creation and context propagation
    let file_path = validate_path(&request_path)?;
    
    debug!("validated path: {}", file_path.display());
    
    serve_file_response(file_path).await
}
```

**justification:**
- **structured logging**: better than printf-style logging in minlog
- **async aware**: proper context propagation in concurrent operations
- **instrument macro**: automatic span creation eliminates boilerplate
- **verbosity levels**: maintains minlog's flexibility with better granularity
- **rich context**: automatic request correlation and timing

### error handling: anyhow + thiserror

**thiserror** (library errors)
```rust
#[derive(thiserror::Error, Debug)]
pub enum AppError {
    #[error("file not found: {path}")]
    FileNotFound { path: String },
    
    #[error("permission denied: {path}")]
    PermissionDenied { path: String },
    
    #[error("path traversal attempt: {path}")]
    PathTraversal { path: String },
    
    #[error("upload too large: {size} bytes (max: {max})")]
    UploadTooLarge { size: u64, max: u64 },
}
```

**anyhow** (application errors)
```rust
// ergonomic error propagation with rich context
pub async fn process_upload(
    upload_dir: &Path,
    file_data: Bytes,
    filename: &str,
) -> anyhow::Result<PathBuf> {
    let target_path = validate_upload_path(upload_dir, filename)
        .with_context(|| format!("validating upload path: {}", filename))?;
    
    write_upload_file(&target_path, file_data).await
        .with_context(|| format!("writing upload file: {}", target_path.display()))?;
    
    Ok(target_path)
}
```

**justification:**
- **ergonomic**: context chaining with ? operator
- **type safe**: custom error types with rich context
- **maintainable**: clear error messages for debugging
- **performance**: zero-cost when not erroring

### file operations: tokio::fs + walkdir

**tokio::fs** (async file operations)
```rust
// non-blocking file operations
pub async fn read_file_metadata(path: &Path) -> Result<FileMetadata, io::Error> {
    let metadata = tokio::fs::metadata(path).await?;
    
    Ok(FileMetadata {
        size: metadata.len(),
        modified: metadata.modified()?,
        is_dir: metadata.is_dir(),
        permissions: metadata.permissions(),
    })
}
```

**walkdir** (directory traversal)
```rust
// robust directory walking with error handling
pub fn collect_directory_entries(dir_path: &Path) -> Result<Vec<DirEntry>, io::Error> {
    WalkDir::new(dir_path)
        .max_depth(1)
        .into_iter()
        .filter_map(|entry| match entry {
            Ok(entry) if entry.path() != dir_path => Some(Ok(entry)),
            Ok(_) => None, // skip the directory itself
            Err(e) => Some(Err(e.into())),
        })
        .collect()
}
```

**justification:**
- **performance**: non-blocking file operations vs blocking d equivalents
- **elegant**: same api as std::fs but async
- **robust**: handles edge cases, symlinks, permissions properly
- **maintains behavior**: exactly matches original directory listing logic

### asset embedding: rust-embed

```rust
#[derive(RustEmbed)]
#[folder = "assets/"]
#[include = "*.css"]
#[include = "*.svg"]
#[include = "*.ico"]
pub struct StaticAssets;

// clean access to embedded files
pub fn get_embedded_asset(path: &str) -> Option<Cow<'static, [u8]>> {
    StaticAssets::get(path)
}

// efficient serving with proper mime types
pub async fn serve_embedded_asset(
    asset_path: &str
) -> Result<Response, AppError> {
    let asset = StaticAssets::get(asset_path)
        .ok_or_else(|| AppError::AssetNotFound { path: asset_path.to_string() })?;
    
    let mime_type = mime_guess::from_path(asset_path)
        .first_or_octet_stream();
    
    Ok(Response::builder()
        .status(StatusCode::OK)
        .header(header::CONTENT_TYPE, mime_type.as_ref())
        .header(header::CACHE_CONTROL, "public, max-age=31536000")
        .body(Body::from(asset.data))?)
}
```

**justification:**
- **elegant**: derive macro eliminates manual include_bytes! calls
- **performance**: compile-time embedding, zero runtime cost
- **rich features**: compression, hash-based caching, selective inclusion
- **clean api**: maintains embedded asset patterns from original

### date/time: chrono

```rust
// rich date/time formatting matching original datefmt.d
pub fn format_file_timestamp(timestamp: SystemTime) -> String {
    let datetime: DateTime<Local> = timestamp.into();
    datetime.format("%Y-%m-%d %H:%M:%S").to_string()
}

// timezone-aware operations
pub fn parse_http_date(date_str: &str) -> Result<SystemTime, chrono::ParseError> {
    DateTime::parse_from_rfc2822(date_str)
        .map(|dt| dt.into())
}
```

**justification:**
- **rich abstractions**: timezone-aware, formatting, parsing built-in
- **maintains compatibility**: replaces custom datefmt.d functionality
- **elegant api**: intuitive formatting with strftime compatibility
- **performance**: efficient operations with minimal allocations

### path security: custom implementation

```rust
// robust path jailing implementation
pub fn ensure_path_within_jail(
    jail_root: &Path,
    target_path: &Path,
) -> Result<PathBuf, PathTraversalError> {
    // canonicalize both paths to resolve symlinks and relative components
    let canonical_jail = jail_root.canonicalize()
        .map_err(|_| PathTraversalError::InvalidJailRoot)?;
    
    let canonical_target = target_path.canonicalize()
        .map_err(|_| PathTraversalError::InvalidTargetPath)?;
    
    // ensure target is within jail boundaries
    if !canonical_target.starts_with(&canonical_jail) {
        return Err(PathTraversalError::OutsideJail {
            jail: canonical_jail,
            target: canonical_target,
        });
    }
    
    Ok(canonical_target)
}

// safe path joining that prevents traversal
pub fn join_path_jailed(
    base_dir: &Path,
    component: &str,
) -> Result<PathBuf, PathTraversalError> {
    // normalize component to prevent traversal
    let normalized = normalize_path_component(component)?;
    
    // join and validate
    let joined = base_dir.join(normalized);
    ensure_path_within_jail(base_dir, &joined)
}
```

**justification:**
- **security-first**: exact port of original join_path_jailed logic
- **elegant**: extension trait pattern for PathBuf operations
- **zero-trust**: prevents all known path traversal attack vectors
- **type-safe**: compile-time guarantees about path safety

## code organization

```
soop3/
├── Cargo.toml                 # project configuration and dependencies
├── PLAN.md                    # this comprehensive plan
├── README.md                  # user documentation
├── assets/                    # static files for embedding
│   ├── style.css             # directory listing styles
│   ├── icon.svg              # application icon
│   ├── favicon.ico           # browser favicon
│   └── brand.svg             # branding element
├── src/
│   ├── main.rs               # entry point, minimal bootstrap
│   ├── lib.rs                # library root for testing
│   ├── config/
│   │   ├── mod.rs            # configuration module public api
│   │   ├── types.rs          # config struct definitions
│   │   ├── loading.rs        # toml parsing and merging logic
│   │   └── validation.rs     # config validation rules
│   ├── server/
│   │   ├── mod.rs            # server module public api
│   │   ├── app.rs            # axum app creation and startup
│   │   ├── handlers/
│   │   │   ├── mod.rs        # handler module exports
│   │   │   ├── files.rs      # file serving handlers
│   │   │   ├── upload.rs     # file upload handlers
│   │   │   ├── listing.rs    # directory listing handlers
│   │   │   └── assets.rs     # static asset handlers
│   │   ├── middleware/
│   │   │   ├── mod.rs        # middleware module exports
│   │   │   ├── auth.rs       # http basic authentication
│   │   │   ├── logging.rs    # request logging and tracing
│   │   │   └── errors.rs     # error handling and responses
│   │   └── extractors.rs     # custom axum extractors
│   ├── core/
│   │   ├── mod.rs            # core business logic
│   │   ├── auth.rs           # authentication logic
│   │   ├── upload.rs         # upload processing
│   │   ├── listing.rs        # directory listing generation
│   │   └── mime.rs           # mime type detection
│   └── utils/
│       ├── mod.rs            # utility module exports
│       ├── paths.rs          # path operations and security
│       ├── files.rs          # file operations and formatting
│       ├── filters.rs        # gitignore-style filtering
│       └── html.rs           # html generation utilities
├── tests/
│   ├── integration/          # integration tests
│   │   ├── server_tests.rs   # full server testing
│   │   ├── upload_tests.rs   # upload functionality
│   │   └── auth_tests.rs     # authentication testing
│   └── fixtures/             # test data and fixtures
└── benches/                  # performance benchmarks
    └── server_bench.rs       # throughput and latency benchmarks
```

**organization principles:**
- **clear separation**: each module has single responsibility
- **self-documenting**: module names clearly explain purpose
- **logical grouping**: related functionality grouped together
- **minimal public apis**: expose only what's needed externally
- **testable**: structure supports comprehensive testing

## implementation phases

### phase 1: foundation (high priority)

#### 1.1 project setup
```toml
# Cargo.toml - carefully curated dependencies
[package]
name = "soop3"
version = "0.9.0"
edition = "2021"
authors = ["redthing1"]
description = "the based http fileserver (rust port)"
license = "proprietary"

[dependencies]
# web server foundation
axum = { version = "0.7", features = ["multipart", "tower-log"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.5", features = ["fs", "trace", "auth"] }

# configuration and cli
clap = { version = "4.0", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
figment = { version = "0.10", features = ["toml", "env"] }

# error handling and logging
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# file operations and utilities
walkdir = "2.0"
mime_guess = "2.0"
chrono = { version = "0.4", features = ["serde"] }
rust-embed = { version = "8.0", features = ["compression"] }

# security and validation
base64 = "0.21"
percent-encoding = "2.0"

[dev-dependencies]
tempfile = "3.0"
tokio-test = "0.4"
```

#### 1.2 basic project structure
- create module hierarchy
- set up basic error types
- implement logging initialization
- create placeholder types

#### 1.3 configuration system
```rust
// src/config/types.rs - comprehensive config types
#[derive(Debug, Clone, Deserialize)]
pub struct AppConfig {
    pub server: ServerConfig,
    pub security: SecurityConfig,
    pub listing: ListingConfig,
    pub upload: UploadConfig,
}

#[derive(Debug, Clone, Deserialize)]
pub struct ServerConfig {
    pub host: String,
    pub port: u16,
    pub public_dir: PathBuf,
    pub upload_dir: Option<PathBuf>,
    pub enable_upload: bool,
}

// src/config/loading.rs - elegant config merging
pub fn load_configuration(cli: &Cli) -> Result<AppConfig, ConfigError> {
    let mut figment = Figment::new()
        .merge(Serialized::defaults(AppConfig::default()));
    
    // merge config file if provided
    if let Some(config_path) = &cli.config_file {
        figment = figment.merge(Toml::file(config_path));
    }
    
    // cli overrides take precedence
    figment = figment.merge(Serialized::defaults(cli));
    
    figment.extract().map_err(ConfigError::from)
}
```

#### 1.4 cli interface
```rust
// src/main.rs - clean entry point
#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let cli = Cli::parse();
    
    // initialize logging based on verbosity
    init_logging(cli.verbose, cli.quiet)?;
    
    // load and validate configuration
    let config = load_configuration(&cli)?;
    
    // start server
    start_server(config).await
}
```

### phase 2: core server (high priority)

#### 2.1 basic http server
```rust
// src/server/app.rs - axum application setup
pub fn create_app(config: AppConfig) -> Router {
    let app_state = AppState::new(config);
    
    Router::new()
        // api routes
        .route("/*path", get(handle_get_request))
        .route("/*path", post(handle_post_request))
        
        // internal static assets
        .route("/__soop_static/*path", get(handle_static_asset))
        
        // middleware stack
        .layer(middleware::from_fn(log_requests))
        .layer(middleware::from_fn_with_state(
            app_state.clone(),
            authenticate_if_required
        ))
        .layer(tower_http::trace::TraceLayer::new_for_http())
        
        .with_state(app_state)
}

pub async fn start_server(config: AppConfig) -> anyhow::Result<()> {
    let app = create_app(config.clone());
    
    let addr = SocketAddr::new(
        config.server.host.parse()?,
        config.server.port
    );
    
    info!("starting soop3 v{} at http://{}", 
          env!("CARGO_PKG_VERSION"), addr);
    info!("public dir: {}", config.server.public_dir.display());
    
    if config.server.enable_upload {
        info!("uploads enabled, saving to: {}", 
              config.upload_dir().display());
    }
    
    axum::Server::bind(&addr)
        .serve(app.into_make_service())
        .await?;
    
    Ok(())
}
```

#### 2.2 file serving handlers
```rust
// src/server/handlers/files.rs - elegant file serving
#[instrument(skip(state), fields(path = %file_path))]
pub async fn handle_get_request(
    State(state): State<AppState>,
    Path(file_path): Path<String>
) -> Result<Response, AppError> {
    info!("processing get request");
    
    // validate and resolve path securely
    let resolved_path = resolve_safe_path(
        &state.config.server.public_dir,
        &file_path
    )?;
    
    // check if path exists
    if !resolved_path.exists() {
        return Ok(not_found_response());
    }
    
    if resolved_path.is_dir() {
        handle_directory_request(state, resolved_path, file_path).await
    } else {
        handle_file_request(state, resolved_path).await
    }
}

async fn handle_file_request(
    state: AppState,
    file_path: PathBuf
) -> Result<Response, AppError> {
    let file = tokio::fs::File::open(&file_path).await?;
    let metadata = file.metadata().await?;
    
    // determine mime type
    let mime_type = mime_guess::from_path(&file_path)
        .first_or_octet_stream();
    
    // create streaming response
    let stream = ReaderStream::new(file);
    let body = Body::from_stream(stream);
    
    Ok(Response::builder()
        .status(StatusCode::OK)
        .header(header::CONTENT_TYPE, mime_type.as_ref())
        .header(header::CONTENT_LENGTH, metadata.len())
        .body(body)?)
}
```

#### 2.3 directory listing generation
```rust
// src/server/handlers/listing.rs - html directory listing
pub async fn generate_directory_listing(
    config: &AppConfig,
    dir_path: &Path,
    request_path: &str,
) -> Result<Html<String>, AppError> {
    // collect directory entries
    let entries = collect_directory_entries(dir_path).await?;
    
    // apply filtering rules
    let filtered_entries = apply_listing_filters(entries, config)?;
    
    // sort entries (directories first, then alphabetical)
    let mut sorted_entries = filtered_entries;
    sorted_entries.sort_by(|a, b| {
        match (a.is_dir(), b.is_dir()) {
            (true, false) => Ordering::Less,
            (false, true) => Ordering::Greater,
            _ => a.file_name().cmp(&b.file_name()),
        }
    });
    
    // generate html
    let html = build_listing_html(&sorted_entries, request_path, config)?;
    Ok(Html(html))
}

fn build_listing_html(
    entries: &[DirEntry],
    request_path: &str,
    config: &AppConfig,
) -> Result<String, AppError> {
    let mut html = String::new();
    
    // html document structure
    html.push_str("<!DOCTYPE html>");
    html.push_str("<html><head>");
    html.push_str("<meta charset=\"utf-8\">");
    html.push_str("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">");
    html.push_str(&format!(
        "<meta name=\"generator\" content=\"soop3 v{}\">",
        env!("CARGO_PKG_VERSION")
    ));
    html.push_str("<link rel=\"icon\" href=\"/__soop_static/icon.svg\">");
    html.push_str(&format!("<title>soop3 | {}</title>", request_path));
    html.push_str("<link rel=\"stylesheet\" href=\"/__soop_static/style.css\">");
    html.push_str("</head><body>");
    
    // content structure
    html.push_str("<div class=\"wrapper\">");
    html.push_str("<main>");
    html.push_str("<a href=\"/\"><img src=\"/__soop_static/icon.svg\" alt=\"logo\" class=\"logo-icon\"></a>");
    html.push_str(&format!(
        "<h1 class=\"index-info\">Index of <code>{}</code></h1>",
        escape_html(request_path)
    ));
    
    // file listing table
    html.push_str("<table class=\"list\">");
    html.push_str("<tr><th>name</th><th>size</th><th>modified</th></tr>");
    
    // parent directory link
    if request_path != "/" {
        html.push_str("<tr><td><a href=\"../\">../</a></td><td></td><td></td></tr>");
    }
    
    // directory entries
    for entry in entries {
        let entry_html = format_directory_entry(entry, request_path)?;
        html.push_str(&entry_html);
    }
    
    html.push_str("</table>");
    html.push_str("</main>");
    html.push_str(&format!(
        "<footer><p>Generated by <code>soop3 v{}</code></p></footer>",
        env!("CARGO_PKG_VERSION")
    ));
    html.push_str("</div></body></html>");
    
    Ok(html)
}
```

### phase 3: advanced features (medium priority)

#### 3.1 file upload implementation
```rust
// src/server/handlers/upload.rs - secure file uploads
#[instrument(skip(state, multipart), fields(path = %upload_path))]
pub async fn handle_post_request(
    State(state): State<AppState>,
    Path(upload_path): Path<String>,
    mut multipart: Multipart,
) -> Result<StatusCode, AppError> {
    info!("processing upload request");
    
    // verify uploads are enabled
    if !state.config.server.enable_upload {
        return Err(AppError::UploadsDisabled);
    }
    
    // extract uploaded file
    let file_data = extract_upload_file(&mut multipart).await?;
    
    // validate and process upload
    let target_path = process_upload(
        &state.config,
        &upload_path,
        file_data,
    ).await?;
    
    info!("upload completed: {}", target_path.display());
    Ok(StatusCode::NO_CONTENT)
}

async fn process_upload(
    config: &AppConfig,
    upload_path: &str,
    file_data: UploadedFile,
) -> Result<PathBuf, AppError> {
    // determine target filename
    let filename = if config.upload.prepend_timestamp {
        let timestamp = chrono::Utc::now().format("%Y%m%d_%H%M%S");
        format!("{}_{}", timestamp, upload_path)
    } else {
        upload_path.to_string()
    };
    
    // validate target path
    let target_path = validate_upload_path(
        config.upload_dir(),
        &filename,
    )?;
    
    // ensure parent directory exists
    if let Some(parent) = target_path.parent() {
        if !parent.exists() {
            if config.upload.create_directories {
                tokio::fs::create_dir_all(parent).await?;
            } else {
                return Err(AppError::DirectoryNotFound {
                    path: parent.to_path_buf(),
                });
            }
        }
    }
    
    // check for existing file
    if target_path.exists() && config.upload.prevent_overwrite {
        return Err(AppError::FileExists {
            path: target_path,
        });
    }
    
    // write file atomically
    write_upload_file(&target_path, file_data.data).await?;
    
    Ok(target_path)
}
```

#### 3.2 authentication middleware
```rust
// src/server/middleware/auth.rs - http basic authentication
pub async fn authenticate_if_required<B>(
    State(state): State<AppState>,
    request: Request<B>,
    next: Next<B>,
) -> Result<Response, AppError> {
    let needs_auth = determine_auth_requirement(&state.config, &request);
    
    if !needs_auth {
        return Ok(next.run(request).await);
    }
    
    // extract and validate credentials
    let auth_header = request.headers()
        .get(header::AUTHORIZATION)
        .and_then(|h| h.to_str().ok())
        .ok_or(AppError::MissingAuth)?;
    
    let credentials = parse_basic_auth(auth_header)?;
    validate_credentials(&state.config.security, &credentials)?;
    
    Ok(next.run(request).await)
}

fn determine_auth_requirement<B>(
    config: &AppConfig,
    request: &Request<B>,
) -> bool {
    let is_upload = request.method() != Method::GET;
    
    match config.security.policy {
        SecurityPolicy::AuthenticateNone => false,
        SecurityPolicy::AuthenticateAll => true,
        SecurityPolicy::AuthenticateUpload => is_upload,
        SecurityPolicy::AuthenticateDownload => !is_upload,
    }
}

fn validate_credentials(
    security_config: &SecurityConfig,
    credentials: &BasicCredentials,
) -> Result<(), AppError> {
    let expected_username = security_config.username.as_ref()
        .ok_or(AppError::AuthNotConfigured)?;
    let expected_password = security_config.password.as_ref()
        .ok_or(AppError::AuthNotConfigured)?;
    
    // constant-time comparison to prevent timing attacks
    let username_valid = constant_time_eq(
        credentials.username.as_bytes(),
        expected_username.as_bytes(),
    );
    let password_valid = constant_time_eq(
        credentials.password.as_bytes(),
        expected_password.as_bytes(),
    );
    
    if username_valid && password_valid {
        Ok(())
    } else {
        Err(AppError::InvalidCredentials)
    }
}
```

### phase 4: utilities and polish (medium priority)

#### 4.1 path security implementation
```rust
// src/utils/paths.rs - comprehensive path security
use std::path::{Path, PathBuf, Component};

pub fn join_path_jailed(
    base_dir: &Path,
    component: &str,
) -> Result<PathBuf, PathTraversalError> {
    // normalize component to prevent traversal
    let normalized = normalize_path_component(component)?;
    
    // join paths
    let joined = base_dir.join(normalized);
    
    // canonicalize and validate
    let canonical_base = base_dir.canonicalize()
        .map_err(|_| PathTraversalError::InvalidBasePath)?;
    
    let canonical_joined = joined.canonicalize()
        .map_err(|_| PathTraversalError::InvalidTargetPath)?;
    
    // ensure result is within jail
    if !canonical_joined.starts_with(&canonical_base) {
        return Err(PathTraversalError::OutsideJail {
            base: canonical_base,
            target: canonical_joined,
        });
    }
    
    Ok(canonical_joined)
}

fn normalize_path_component(component: &str) -> Result<PathBuf, PathTraversalError> {
    // url decode the component
    let decoded = percent_encoding::percent_decode_str(component)
        .decode_utf8()
        .map_err(|_| PathTraversalError::InvalidEncoding)?;
    
    // build normalized path
    let mut normalized = PathBuf::new();
    
    for component in Path::new(decoded.as_ref()).components() {
        match component {
            Component::Normal(name) => normalized.push(name),
            Component::CurDir => {}, // ignore "."
            Component::ParentDir => {
                // allow going up, but validation will catch jail escapes
                normalized.push("..");
            },
            Component::RootDir => {
                // start fresh from root
                normalized = PathBuf::from("/");
            },
            Component::Prefix(_) => {
                // windows drive prefixes not allowed
                return Err(PathTraversalError::WindowsPrefix);
            },
        }
    }
    
    Ok(normalized)
}
```

#### 4.2 file utilities
```rust
// src/utils/files.rs - file operations and formatting
pub fn format_file_size(size: u64) -> String {
    const UNITS: &[&str] = &["B", "KiB", "MiB", "GiB", "TiB", "PiB"];
    const THRESHOLD: f64 = 1024.0;
    
    if size == 0 {
        return "0 B".to_string();
    }
    
    let mut size_f = size as f64;
    let mut unit_index = 0;
    
    while size_f >= THRESHOLD && unit_index < UNITS.len() - 1 {
        size_f /= THRESHOLD;
        unit_index += 1;
    }
    
    if unit_index == 0 {
        format!("{} {}", size, UNITS[unit_index])
    } else {
        format!("{:.1} {}", size_f, UNITS[unit_index])
    }
}

pub async fn collect_directory_entries(
    dir_path: &Path
) -> Result<Vec<DirectoryEntry>, io::Error> {
    let mut entries = Vec::new();
    let mut read_dir = tokio::fs::read_dir(dir_path).await?;
    
    while let Some(entry) = read_dir.next_entry().await? {
        let metadata = entry.metadata().await?;
        let file_name = entry.file_name();
        
        entries.push(DirectoryEntry {
            name: file_name.to_string_lossy().into_owned(),
            path: entry.path(),
            size: metadata.len(),
            modified: metadata.modified()?,
            is_dir: metadata.is_dir(),
        });
    }
    
    Ok(entries)
}
```

#### 4.3 comprehensive testing
```rust
// tests/integration/server_tests.rs - integration testing
#[tokio::test]
async fn test_file_serving() {
    let temp_dir = create_test_directory().await;
    let config = create_test_config(&temp_dir);
    let app = create_app(config);
    
    // test file serving
    let response = app
        .oneshot(
            Request::builder()
                .uri("/test.txt")
                .body(Body::empty())
                .unwrap(),
        )
        .await
        .unwrap();
    
    assert_eq!(response.status(), StatusCode::OK);
    
    let body = hyper::body::to_bytes(response.into_body()).await.unwrap();
    assert_eq!(body, "test content");
}

#[tokio::test]
async fn test_directory_listing() {
    let temp_dir = create_test_directory().await;
    let config = create_test_config(&temp_dir);
    let app = create_app(config);
    
    let response = app
        .oneshot(
            Request::builder()
                .uri("/")
                .body(Body::empty())
                .unwrap(),
        )
        .await
        .unwrap();
    
    assert_eq!(response.status(), StatusCode::OK);
    
    let body = hyper::body::to_bytes(response.into_body()).await.unwrap();
    let html = String::from_utf8(body.to_vec()).unwrap();
    
    assert!(html.contains("Index of"));
    assert!(html.contains("test.txt"));
}

#[tokio::test]
async fn test_path_traversal_prevention() {
    let temp_dir = create_test_directory().await;
    let config = create_test_config(&temp_dir);
    let app = create_app(config);
    
    // attempt path traversal
    let response = app
        .oneshot(
            Request::builder()
                .uri("/../../../etc/passwd")
                .body(Body::empty())
                .unwrap(),
        )
        .await
        .unwrap();
    
    assert_eq!(response.status(), StatusCode::BAD_REQUEST);
}
```

## coding standards

### style guidelines
```rust
// lowercase comments throughout codebase
// self-documenting function and variable names
// clear intent over cleverness
// comprehensive error handling

pub async fn serve_directory_listing(
    config: &ListingConfig,
    directory_path: &Path,
    request_path: &str,
) -> Result<Html<String>, AppError> {
    // validate path is within allowed boundaries
    let canonical_path = validate_and_canonicalize_path(directory_path)?;
    
    // collect directory entries with metadata
    let entries = collect_directory_entries(&canonical_path).await?;
    
    // apply filtering rules if configured
    let filtered_entries = apply_listing_filters(entries, config)?;
    
    // generate html response
    build_directory_listing_html(filtered_entries, request_path)
}

// consistent error handling patterns
pub fn validate_upload_path(
    base_dir: &Path,
    upload_path: &str,
) -> Result<PathBuf, PathValidationError> {
    // prevent directory traversal attacks
    let normalized = normalize_path_component(upload_path)?;
    
    // ensure path stays within jail
    let full_path = base_dir.join(normalized);
    ensure_path_within_jail(base_dir, &full_path)?;
    
    Ok(full_path)
}

// comprehensive documentation
/// validates and normalizes a file upload path
/// 
/// # arguments
/// * `base_dir` - the base directory for uploads (jail root)
/// * `upload_path` - the requested upload path from client
/// 
/// # returns
/// * `ok(pathbuf)` - validated and jailed path
/// * `err(pathvalidationerror)` - path validation failed
/// 
/// # security
/// this function prevents directory traversal attacks by:
/// - normalizing path components
/// - ensuring result stays within base_dir
/// - canonicalizing paths to resolve symlinks
pub fn validate_upload_path(
    base_dir: &Path,
    upload_path: &str,
) -> Result<PathBuf, PathValidationError> {
    // implementation...
}
```

### testing strategy
```rust
// comprehensive test coverage
// integration tests for full functionality
// unit tests for individual components
// property-based testing for security functions

#[cfg(test)]
mod tests {
    use super::*;
    use tempfile::TempDir;
    use tokio_test;
    
    #[tokio::test]
    async fn test_file_size_formatting() {
        assert_eq!(format_file_size(0), "0 B");
        assert_eq!(format_file_size(1024), "1.0 KiB");
        assert_eq!(format_file_size(1536), "1.5 KiB");
        assert_eq!(format_file_size(1048576), "1.0 MiB");
    }
    
    #[tokio::test]
    async fn test_path_jailing_security() {
        let temp_dir = TempDir::new().unwrap();
        let base_path = temp_dir.path();
        
        // valid paths should succeed
        assert!(join_path_jailed(base_path, "file.txt").is_ok());
        assert!(join_path_jailed(base_path, "subdir/file.txt").is_ok());
        
        // traversal attempts should fail
        assert!(join_path_jailed(base_path, "../file.txt").is_err());
        assert!(join_path_jailed(base_path, "../../etc/passwd").is_err());
        assert!(join_path_jailed(base_path, "/etc/passwd").is_err());
    }
    
    async fn create_test_directory() -> TempDir {
        let temp_dir = TempDir::new().unwrap();
        
        // create test files
        tokio::fs::write(
            temp_dir.path().join("test.txt"),
            "test content"
        ).await.unwrap();
        
        tokio::fs::create_dir(
            temp_dir.path().join("subdir")
        ).await.unwrap();
        
        temp_dir
    }
}
```

## performance considerations

### memory efficiency
- leverage rust's zero-cost abstractions throughout
- use borrowed data (`&str`, `&Path`) where possible to minimize allocations
- implement streaming for large file transfers
- efficient string handling with `Cow<str>` for optional allocations
- careful buffer management in upload handling

### async efficiency
- proper async/await usage throughout codebase
- non-blocking file operations with `tokio::fs`
- efficient connection handling with axum's built-in pooling
- backpressure management for uploads and downloads
- streaming responses to handle large files without memory pressure

### binary optimization
```toml
[profile.release]
lto = true              # link-time optimization
codegen-units = 1       # better optimization
panic = "abort"         # smaller binary size
strip = true            # remove debug symbols
```

### caching and optimization
```rust
// efficient asset serving with proper cache headers
pub async fn serve_embedded_asset(path: &str) -> Result<Response, AppError> {
    let asset = StaticAssets::get(path)?;
    
    Ok(Response::builder()
        .header(header::CACHE_CONTROL, "public, max-age=31536000")
        .header(header::ETAG, format!("\"{}\"", asset.etag))
        .body(Body::from(asset.data))?)
}

// streaming file responses for memory efficiency
pub async fn serve_large_file(path: &Path) -> Result<Response, AppError> {
    let file = tokio::fs::File::open(path).await?;
    let stream = ReaderStream::new(file);
    let body = Body::from_stream(stream);
    
    Ok(Response::builder()
        .header(header::CONTENT_TYPE, mime_type)
        .body(body)?)
}
```

## security model

### path security implementation
```rust
// comprehensive path jailing prevents all known traversal attacks
pub fn ensure_path_within_jail(
    jail_root: &Path,
    target_path: &Path,
) -> Result<PathBuf, PathTraversalError> {
    // canonicalize both paths to resolve symlinks and relative components
    let canonical_jail = jail_root.canonicalize()
        .map_err(|_| PathTraversalError::InvalidJailRoot)?;
    
    let canonical_target = target_path.canonicalize()
        .map_err(|_| PathTraversalError::InvalidTargetPath)?;
    
    // ensure target is within jail boundaries
    if !canonical_target.starts_with(&canonical_jail) {
        return Err(PathTraversalError::OutsideJail {
            jail: canonical_jail,
            target: canonical_target,
        });
    }
    
    Ok(canonical_target)
}
```

### authentication security
```rust
// constant-time credential comparison prevents timing attacks
fn constant_time_eq(a: &[u8], b: &[u8]) -> bool {
    if a.len() != b.len() {
        return false;
    }
    
    let mut result = 0u8;
    for (x, y) in a.iter().zip(b.iter()) {
        result |= x ^ y;
    }
    
    result == 0
}

// secure credential validation
pub fn validate_basic_auth(
    auth_header: &str,
    expected_username: &str,
    expected_password: &str,
) -> Result<(), AuthError> {
    let credentials = parse_basic_auth_header(auth_header)?;
    
    let username_valid = constant_time_eq(
        credentials.username.as_bytes(),
        expected_username.as_bytes(),
    );
    
    let password_valid = constant_time_eq(
        credentials.password.as_bytes(),
        expected_password.as_bytes(),
    );
    
    if username_valid && password_valid {
        Ok(())
    } else {
        Err(AuthError::InvalidCredentials)
    }
}
```

### input validation
```rust
// comprehensive input sanitization
pub fn sanitize_filename(filename: &str) -> Result<String, ValidationError> {
    // reject dangerous characters
    if filename.contains('\0') || filename.contains('/') || filename.contains('\\') {
        return Err(ValidationError::DangerousCharacters);
    }
    
    // reject reserved names
    if matches!(filename, "." | ".." | "CON" | "PRN" | "AUX" | "NUL") {
        return Err(ValidationError::ReservedName);
    }
    
    // limit length
    if filename.len() > MAX_FILENAME_LENGTH {
        return Err(ValidationError::TooLong);
    }
    
    Ok(filename.to_string())
}
```

## deployment strategy

### docker optimization
```dockerfile
# multi-stage build for minimal production image
FROM rust:1.70-alpine as builder

# install build dependencies
RUN apk add --no-cache musl-dev

WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY src ./src
COPY assets ./assets

# build optimized binary
RUN cargo build --release --target x86_64-unknown-linux-musl

# minimal runtime image
FROM alpine:latest

# install ca-certificates for https
RUN apk add --no-cache ca-certificates

# create non-root user
RUN adduser -D -s /bin/sh soop

# copy binary
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/soop3 /usr/local/bin/

USER soop
EXPOSE 8000

ENTRYPOINT ["soop3"]
```

### performance benchmarking
```rust
// comprehensive benchmarks to ensure performance parity with d version
use criterion::{black_box, criterion_group, criterion_main, Criterion};

fn bench_file_serving(c: &mut Criterion) {
    let rt = tokio::runtime::Runtime::new().unwrap();
    
    c.bench_function("serve_1mb_file", |b| {
        b.iter(|| {
            rt.block_on(async {
                black_box(serve_test_file(TEST_1MB_FILE).await)
            })
        })
    });
}

fn bench_directory_listing(c: &mut Criterion) {
    let rt = tokio::runtime::Runtime::new().unwrap();
    
    c.bench_function("list_1000_files", |b| {
        b.iter(|| {
            rt.block_on(async {
                black_box(generate_directory_listing(TEST_1000_FILES_DIR).await)
            })
        })
    });
}

criterion_group!(benches, bench_file_serving, bench_directory_listing);
criterion_main!(benches);
```

### continuous integration
```yaml
# .github/workflows/ci.yml
name: CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          
      - name: Run tests
        run: cargo test --all-features
        
      - name: Run clippy
        run: cargo clippy -- -D warnings
        
      - name: Check formatting
        run: cargo fmt -- --check
        
      - name: Security audit
        run: cargo audit
        
      - name: Run benchmarks
        run: cargo bench
        
  docker:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Build docker image
        run: docker build -t soop3:latest .
        
      - name: Test docker image
        run: docker run --rm soop3:latest --version
```

## success criteria

### functionality parity
- [ ] identical cli interface to soop2
- [ ] identical toml configuration format
- [ ] identical web ui and directory listing
- [ ] identical security features (path jailing, auth)
- [ ] identical upload functionality
- [ ] identical embedded asset serving

### performance targets
- [ ] memory usage ≤ soop2 d version
- [ ] throughput ≥ soop2 d version  
- [ ] latency ≤ soop2 d version
- [ ] binary size ≤ 150% of optimized d version
- [ ] startup time ≤ soop2 d version

### code quality
- [ ] 100% test coverage for security-critical functions
- [ ] ≥ 90% overall test coverage
- [ ] zero clippy warnings in strict mode
- [ ] comprehensive documentation
- [ ] security audit passes

### deployment
- [ ] docker image builds successfully
- [ ] static binary for linux deployment
- [ ] cross-compilation support
- [ ] production-ready configuration

this comprehensive plan ensures we maintain all the excellent qualities of soop2 while leveraging rust's advantages for improved safety, performance, and maintainability.