dialectic 0.1.0

Transport-polymorphic, asynchronous, concurrent session types for Rust
Documentation
#! /bin/env python3

# This file automatically generates the README.md file for this repository based upon the first
# section of the crate documentation.

with open("README.md", "w") as readme:
    with open("src/lib.rs", "r") as lib:
        for line in lib:
            if len(line) > 4:
                line = line[4:]
            else:
                line = "\n"
            if line.endswith("<!-- snip -->\n"):
                break
            readme.write(line)