2 Star 4 Fork 4

goroutine/tikv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Cargo.toml 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
Jay 提交于 2016-12-06 13:20 . speedup debug build (#1393)
[package]
name = "tikv"
version = "0.0.1"
keywords = ["KV", "distributed-systems", "raft"]
build = "build.rs"
[build-dependencies]
time = "0.1"
[features]
default = []
dev = ["clippy"]
static-link = ["rocksdb/static-link"]
portable = ["rocksdb/portable"]
[lib]
name = "tikv"
[[bin]]
name = "tikv-server"
[[bin]]
name = "bench-tikv"
path = "benches/bin/bench-tikv.rs"
[[bin]]
name = "tikv-ctl"
[[test]]
name = "tests"
[dependencies]
log = "0.3"
byteorder = "0.5"
rand = "0.3"
quick-error = "0.2"
tempdir = "0.3"
uuid = { version = "0.3", features = ["v4"] }
time = "0.1"
threadpool = "1.0.0"
toml = "0.1"
num = "0.1"
libc = "0.2.11"
crc = "1.2"
fs2 = "0.4"
clippy = {version = "*", optional = true}
rustc-serialize = "0.3"
protobuf = "1.0"
bytes = "0.3.0"
nix = "0.6.0"
utime = "0.1"
chrono = "0.2"
lazy_static = "0.2.1"
signal = "0.2"
backtrace = "0.2.3"
clap = "2"
url = "1.2"
getopts = "0.2"
regex = "0.1"
[dependencies.rocksdb]
git = "https://github.com/ngaut/rust-rocksdb.git"
[dependencies.kvproto]
git = "https://github.com/pingcap/kvproto"
[dependencies.tipb]
git = "https://github.com/pingcap/tipb.git"
[dependencies.mio]
git = "https://github.com/carllerche/mio.git"
[dependencies.prometheus]
git = "https://github.com/pingcap/rust-prometheus.git"
default-features = false
features = ["nightly", "push"]
[profile.dev]
opt-level = 0 # Controls the --opt-level the compiler builds with
debug = true # Controls whether the compiler passes `-g`
codegen-units = 4
# The release profile, used for `cargo build --release`
[profile.release]
opt-level = 3
debug = true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/ngaut/tikv.git
git@gitee.com:ngaut/tikv.git
ngaut
tikv
tikv
master

搜索帮助