vec-collections 0.4.3

Rust collections that are newtype wrappers around smallvec
Documentation
set datafile separator ","
set terminal png size 1024, 768
set output 'alloc.png'
set ylabel "bytes"
set xlabel "size (u64)"
# set key autotitle columnhead
plot \
  'alloc.csv' using 1:2 title 'BTreeSet allocations' with lines, \
  '' using 1:3 title 'BTreeSet permanent' with lines, \
  '' using 1:2 title 'VecSet allocations' with lines, \
  '' using 1:2 title 'VecSet permanent' with lines, \
  '' using 1:2 title 'HashSet allocations' with lines, \
  '' using 1:2 title 'HashSet permanent' with lines, \