-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (39 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "mercator_db"
version = "0.1.0"
authors = ["EPFL-DIAS", "Lionel Sambuc <[email protected]>"]
edition = "2018"
description = "Database model for mercator."
#homepage = "https://crates.io/crates/mercator_db"
repository = "https://github.com/epfl-dias/mercator_db"
readme = "README.md"
keywords = []
categories = ["database-implementations", "data-structures"]
license = "MIT"
#license-file = "LICENSE"
include = ["Cargo.toml", "README.md", "LICENSE", "ACKNOWLEDGEMENTS", "src/**/*.rs"]
[lib]
name = "mercator_db"
path = "src/lib.rs"
[[bin]]
name = "db-test"
path = "src/main.rs"
required-features = ["bin"]
[features]
bin = ["measure_time", "pretty_env_logger"]
[dependencies]
ironsea_index = "^0.1"
ironsea_index_sfc_dbc = "^0.1"
ironsea_index_hashmap = "^0.1"
arrayref = "^0.3" # For Positions Objects
lazy_static = "^1.3"
memmap = "^0.7"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
bincode = "^1.1"
# Logging macros API
#log = { version = "^0.4", features = ["max_level_trace", "release_max_level_info"] }
log = { version = "^0.4", features = ["max_level_trace", "release_max_level_trace"] }
# Used for main.rs as integration test
pretty_env_logger = { version = "^0.3", optional = true } # Logger implementation
measure_time = { version = "^0.6", optional = true } # To mesure parsing time, only required by binary