assembly-data

Crates.ioassembly-data
lib.rsassembly-data
version0.3.0
sourcesrc
created_at2019-07-14 21:54:03.66236
updated_at2021-09-13 07:56:21.787065
descriptionDatabase module for the assembly crate
homepagehttps://xiphoseer.github.io
repositoryhttps://github.com/xiphoseer/assembly_rs
max_upload_size
id149032
size267,211
Daniel Seiler (Xiphoseer)

documentation

README

assembly-data

This crate contains the database related file formats of the assembly library.

Example Tools

This crate comes with a selection of example tools that can be installed using:

$ cargo install assembly-data --examples

fdb-columns

Show all columns and their types for some table:

$ cargo run --example fdb-columns <file> <table>

fdb-copy

Read an FDB file an create another one with the same content:

$ cargo run --example fdb-copy <src> <dest>

fdb-index

Show all rows for a single key in a table:

$ cargo run --example fdb-index <file> <table> <key>

fdb-stat

Print statistics on an FDB file:

$ cargo run --example fdb-stat <file>

fdb-tables

Show all tables in an FDB file

$ cargo run --example fdb-tables <file>

fdb-tree

Print the names of all tables and their columns

$ cargo run --example fdb-tree <file>
Commit count: 232

cargo fmt