forked from zombodb/zombodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (56 loc) · 1.36 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
[package]
name = "zombodb"
description = "Making Postgres and Elasticsearch work together like it's 2022"
version = "3000.0.12"
edition = "2018"
build = "build.rs"
readme = "README.md"
license = "LICENSE.md"
[lib]
crate-type = [ "cdylib" ]
[features]
default = [ "pg14" ]
pg10 = [ "pgx/pg10", "pgx-tests/pg10" ]
pg11 = [ "pgx/pg11", "pgx-tests/pg11" ]
pg12 = [ "pgx/pg12", "pgx-tests/pg12" ]
pg13 = [ "pgx/pg13", "pgx-tests/pg13" ]
pg14 = [ "pgx/pg14", "pgx-tests/pg14" ]
pg_test = [ ]
[dependencies]
byteorder = "1.4.3"
chrono = "0.4.19"
crossbeam-channel = "0.5.4"
dashmap = "5.3.3"
humantime = "2.1.0"
indexmap = "1.8.1"
lalrpop-util = "0.19.7"
lazy_static = "1.4.0"
levenshtein = "1.0.5"
memoffset = "0.6.5"
num_cpus = "1.13.1"
pgx = "0.4.3"
pgx-macros = "0.4.3"
rayon = "1.5.2"
regex = "1.5.5"
rustc-hash = "1.1.0"
serde = { version = "1.0.137", features = [ "derive" ] }
serde_json = { version = "1.0.80", features = [ "preserve_order" ] }
serde_cbor = "0.11.2"
sqlformat = "0.1.8"
ureq = { version = "2.4.0", features = [ "json" ] }
url = "2.2.2"
[build-dependencies]
lalrpop = { version = "0.19.7", features = [ "lexer" ] }
built = { version = "0.5.1", features = [ "git2", "semver" ] }
[dev-dependencies]
pgx-tests = "0.4.3"
libc = "0.2.125"
[profile.dev]
panic = "unwind"
debug = true
opt-level = 0
[profile.release]
panic = "unwind"
opt-level = 3
lto = "fat"
codegen-units = 1