[package]
edition = "2024"
name = "sst"
version = "0.19.0"
authors = ["Robert Escriva <robert@rescrv.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SST provides a sorted string table abstraction."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/rescrv/blue"
[features]
binaries = ["command_line"]
command_line = [
"dep:arrrg",
"dep:arrrg_derive",
"dep:getopts",
]
default = ["binaries"]
[lib]
name = "sst"
path = "src/lib.rs"
[[bin]]
name = "jester-from-plaintext"
path = "src/bin/jester-from-plaintext.rs"
required-features = ["binaries"]
[[bin]]
name = "log-checksum"
path = "src/bin/log-checksum.rs"
required-features = ["binaries"]
[[bin]]
name = "log-dump"
path = "src/bin/log-dump.rs"
required-features = ["binaries"]
[[bin]]
name = "log-from-plaintext"
path = "src/bin/log-from-plaintext.rs"
required-features = ["binaries"]
[[bin]]
name = "log-options"
path = "src/bin/log-options.rs"
required-features = ["binaries"]
[[bin]]
name = "log-truncate-final-partial-frame"
path = "src/bin/log-truncate-final-partial-frame.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-checksum"
path = "src/bin/sst-checksum.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-dump"
path = "src/bin/sst-dump.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-from-log"
path = "src/bin/sst-from-log.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-from-plaintext"
path = "src/bin/sst-from-plaintext.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-inspect"
path = "src/bin/sst-inspect.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-options"
path = "src/bin/sst-options.rs"
required-features = ["binaries"]
[[bin]]
name = "sst-stat"
path = "src/bin/sst-stat.rs"
required-features = ["binaries"]
[[test]]
name = "alphabet"
path = "tests/alphabet.rs"
[[test]]
name = "block"
path = "tests/block.rs"
[[test]]
name = "bounds_cursor"
path = "tests/bounds_cursor.rs"
[[test]]
name = "concat_cursor"
path = "tests/concat_cursor.rs"
[[test]]
name = "guacamole"
path = "tests/guacamole.rs"
[[test]]
name = "merging_cursor"
path = "tests/merging_cursor.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "pruning_cursor"
path = "tests/pruning_cursor.rs"
[[test]]
name = "read-while-write-log"
path = "tests/read-while-write-log.rs"
[[test]]
name = "reference"
path = "tests/reference.rs"
[[test]]
name = "sst"
path = "tests/sst.rs"
[dependencies.armnod]
version = "0.12.0"
[dependencies.arrrg]
version = "0.9.0"
optional = true
[dependencies.arrrg_derive]
version = "0.9.0"
optional = true
[dependencies.biometrics]
version = "0.13.0"
[dependencies.buffertk]
version = "0.14.0"
[dependencies.crc32c]
version = "0.6"
[dependencies.getopts]
version = "0.2"
optional = true
[dependencies.guacamole]
version = "0.15.0"
[dependencies.handled]
version = "0.7.0"
[dependencies.indicio]
version = "0.13.0"
[dependencies.libc]
version = "0.2"
[dependencies.nom]
version = "7.1"
[dependencies.prototk]
version = "0.14.0"
[dependencies.prototk_derive]
version = "0.14.0"
[dependencies.setsum]
version = "0.8.0"
[dependencies.siphasher]
version = "1.0.0"
[dependencies.sync42]
version = "0.16.0"
[dependencies.tatl]
version = "0.14.0"
[dependencies.utilz]
version = "0.8.0"
[dev-dependencies.proptest]
version = "1.0"