s3s icon indicating copy to clipboard operation
s3s copied to clipboard

s3s-model

Open Nugine opened this issue 9 months ago • 1 comments

The new crate s3s-model will expose structural data for describing S3 protocol. Our code generator will be rebased on s3s-model's data.

Steps

  • [ ] #253

Nugine avatar Feb 11 '25 09:02 Nugine

flowchart LR
    d1[external data]
    d2[vendored data]
    d3[model data]
    d4[s3s code]

    a1([crawl])
    a2([preprocess])
    a3([codegen])

    subgraph "data/crawl.py"
        d1 --> a1 --> d2 
    end
    subgraph "codegen/src/main.rs"
        d2 --> a2 --> d3
        d3 --> a3 --> d4
    end

Nugine avatar Feb 23 '25 08:02 Nugine