changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/db/Cargo.toml

changeset 698: 96958d3eb5b0
parent: 4eb046cebb5a
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 [package]
2 name = "db"
3 version = "0.1.0"
4 authors = ["ellis"]
5 edition = "2021"
6 description = "Database System"
7 repository = "https://vc.compiler.company/comp/core"
8 
9 [features]
10 default = ["rocksdb"]
11 
12 [dependencies]
13 obj = { version = "0.1.0", path = "../obj" }
14 # make sure to use our custom branch (default)
15 rocksdb = { version = "0.22", default-features = false, features = ["zstd", "multi-threaded-cf","rtti"], git = "https://vc.compiler.company/packy/rust-rocksdb.git", branch = "default", optional = true }
16 
17 [dev-dependencies]
18 tempfile = "3.10.1"