Blob cantine/Cargo.toml
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
[package]
name = "cantine"
version = "0.1.0"
authors = ["Caio Romão <contact@caio.co>"]
edition = "2018"
default-run = "cantine"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cantine_derive = { path = "../cantine_derive" }
tique = { path = "../tique", features = ["queryparser"] }
actix-rt = "2.0"
actix-service = "2.0"
actix-web = "3.2"
base64 = "0.13"
bincode = "1"
byteorder = "1.3"
crossbeam-channel = "0.5"
env_logger = { version = "0.8", default-features = false }
log = { version = "0.4", features = ["max_level_trace", "release_max_level_info"] }
memmap = "0.7"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tantivy = "0.15"
uuid = { version = "0.8", features = ["serde"] }
zerocopy = "0.5"
[dev-dependencies]
# v4 feature added to generate test uuids
uuid = { version = "0.8", features = ["serde", "v4"] }
tempfile = "3.1"
once_cell = "1.4"
quickcheck = "1.0"
|