-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
81 lines (73 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "podium"
version = "0.0.3"
authors = ["Teodor Voinea <[email protected]>"]
edition = "2018"
[workspace]
members = [
"src/common",
"src/contracts",
"src/custom_tantivy",
"src/indexers",
"src/indexers/csv",
"src/indexers/docx",
"src/indexers/exif",
"src/indexers/mobile_net_v2",
"src/indexers/pdf",
"src/indexers/pptx",
"src/indexers/spreadsheet",
"src/indexers/text",
]
[dependencies]
contracts = { path = "src/contracts" }
custom_tantivy = { path = "src/custom_tantivy" }
indexers = { path = "src/indexers" }
common = { path = "src/common" }
walkdir = "2"
app_dirs = "1"
notify = "4"
dirs = "3"
config = "0.10"
simple_logger = "1"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serde_derive = "1"
lazy_static = "1"
opener = "0.4"
actix-web = "4.0.0-beta.8"
futures = "0.3"
crossbeam = "0.8"
actix-cors = "0.5"
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
clap = "2"
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2.3"
tracing-flame = "0.1.0"
# TODO: once paperclip stabilizes actix open api generator - https://paperclip.waffles.space/actix-plugin.html
# paperclip = { version = "0.3.0", features = ["actix"] }
failure = "=0.1.7"
[dev-dependencies]
criterion = "0.3"
[lib]
name = "podium_lib"
path = "src/lib.rs"
bench = false
[[bin]]
name = "podium"
path = "src/bin.rs"
bench = false
[[bench]]
name = "my_benchmark"
harness = false
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
overflow-checks = false