createrepo_rs 0.1.4

🦀 Pure Rust implementation of createrepo_c — generates RPM repository metadata (repodata). Drop-in replacement with identical output, zero FFI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
server {
    listen 80;
    server_name localhost;

    root /usr/share/nginx/html;
    index index.html;

    location / {
        autoindex on;
        autoindex_exact_size off;
    }

    # Disable caching for metadata files
    location /repodata/ {
        autoindex on;
        add_header Cache-Control "no-cache";
    }
}