Skip to content
Snippets Groups Projects
Cargo.toml 1.02 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jason Volk's avatar
    Jason Volk committed
    [package]
    name = "rust-rocksdb-uwu"
    
    categories.workspace = true
    description = "dylib wrapper for rust-rocksdb"
    
    Jason Volk's avatar
    Jason Volk committed
    edition = "2021"
    
    keywords.workspace = true
    license.workspace = true
    readme.workspace = true
    repository.workspace = true
    version = "0.0.1"
    
    Jason Volk's avatar
    Jason Volk committed
    
    [features]
    default = ["snappy", "lz4", "zstd", "zlib", "bzip2"]
    jemalloc = ["rust-rocksdb/jemalloc"]
    io-uring = ["rust-rocksdb/io-uring"]
    valgrind = ["rust-rocksdb/valgrind"]
    snappy = ["rust-rocksdb/snappy"]
    lz4 = ["rust-rocksdb/lz4"]
    zstd = ["rust-rocksdb/zstd"]
    zlib = ["rust-rocksdb/zlib"]
    bzip2 = ["rust-rocksdb/bzip2"]
    rtti = ["rust-rocksdb/rtti"]
    mt_static = ["rust-rocksdb/mt_static"]
    multi-threaded-cf = ["rust-rocksdb/multi-threaded-cf"]
    serde1 = ["rust-rocksdb/serde1"]
    malloc-usable-size = ["rust-rocksdb/malloc-usable-size"]
    
    [dependencies.rust-rocksdb]
    git = "https://github.com/zaidoon1/rust-rocksdb"
    
    rev = "b4887edfb84771336930855727390edec07d63fa"
    
    Jason Volk's avatar
    Jason Volk committed
    default-features = false
    
    [lib]
    path = "lib.rs"
    crate-type = [
    	"rlib",
    #	"dylib"
    ]