README.md

HashFS
======

This is a simple implementation of content-addressable storage (CAS for short).
Files are stored in a write-once-read-many fashion with a hash of the
file's content serving as the key for future references. The system is simple,
but very effective for storing data that does not change that much (which are
almost all BLOBs).

## Features

 - Hash addressing is compatible with Git storage

## Installation

```elixir
def deps do
  [{:hashfs, "~> 0.1.0"}]
end
  ```