-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (22 loc) · 946 Bytes
/
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
[package]
name = "ironsea_index_sfc_dbc"
version = "0.1.0"
authors = ["EPFL-DIAS", "Lionel Sambuc <lionel.sambuc@epfl.ch>"]
edition = "2018"
description = "Space-filling Curve over dictionnary-based compression, index implementation for the Iron Sea database toolkit."
homepage = "https://crates.io/crates/ironsea_index_sfc_dbc"
repository = "https://github.com/epfl-dias/ironsea_index_sfc_dbc"
readme = "README.md"
keywords = []
categories = ["database-implementations", "data-structures"]
license = "MIT"
#license-file = "LICENSE"
include = ["Cargo.toml", "README.md", "LICENSE", "ACKNOWLEDGEMENTS", "src/**/*.rs"]
[dependencies]
ironsea_index = "^0.1"
#ironsea_store = "^0.1"
arrayref = "^0.3"
#log = { version = "^0.4", features = ["max_level_trace", "release_max_level_info"] }
log = { version = "^0.4", features = ["max_level_trace", "release_max_level_trace"] }
serde = { version = "^1.0", features = ["derive"] }
bincode = "^1.1"