tendermint/libs
Ethan Buchman ae3bf81833 mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
..
autofile mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
bech32 mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
cli mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
clist mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
common mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
db mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
events subscribe before state emits NewRoundStep 2018-05-21 10:51:47 +04:00
flowrate mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
log mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
merkle mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
pubsub [libs/pubsub] fix memory leak 2018-06-19 19:59:21 +04:00
test mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
version mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
.editorconfig mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
.gitignore mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
CHANGELOG.md mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
CODEOWNERS mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
Gopkg.lock mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
Gopkg.toml mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
LICENSE mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
Makefile mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
README.md mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
circle.yml mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
glide.lock mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
glide.yaml mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
merge.sh mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00
test.sh mv tmlibs files to libs dir 2018-07-01 22:36:03 -04:00

README.md

TMLIBS

This repo is a home for various small packages.

autofile

Autofile is file access with automatic log rotation. A group of files is maintained and rotation happens when the leading file gets too big. Provides a reader for reading from the file group.

cli

CLI wraps the cobra and viper packages and handles some common elements of building a CLI like flags and env vars for the home directory and the logger.

clist

Clist provides a linekd list that is safe for concurrent access by many readers.

common

Common provides a hodgepodge of useful functions.

db

DB provides a database interface and a number of implementions, including ones using an in-memory map, the filesystem directory structure, an implemention of LevelDB in Go, and the official LevelDB in C.

events

Events is a synchronous PubSub package.

flowrate

Flowrate is a fork of https://github.com/mxk/go-flowrate that added a SetREMA method.

log

Log is a log package structured around key-value pairs that allows logging level to be set differently for different keys.

merkle

Merkle provides a simple static merkle tree and corresponding proofs.

process

Process is a simple utility for spawning OS processes.

pubsub

PubSub is an asynchronous PubSub package.