-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 957 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
31
32
33
34
[package]
name = "flaco"
version = "0.6.0"
edition = "2018"
license = "Unlicense/MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[features]
default = ["extension-module"]
extension-module = ["pyo3/extension-module"]
[dependencies]
uuid = "0.8.2"
serde_json = "^1"
numpy = "0.17"
arrow2 = { version = "^0.13", features = ["io_ipc", "io_parquet"] }
rust_decimal = { version = "1.16.0", features = ["db-postgres"] }
time = { version = "0.3.3", features = ["formatting", "parsing"] }
postgres = { version = "0.19.1", features = ["with-time-0_3", "with-serde_json-1", "with-uuid-0_8"] }
postgres-protocol = "0.6.2"
pyo3 = { version = "0.17", default-features = false, features = ["macros"] }
[profile.dev]
lto = false
debug = true
[profile.release]
lto = true
debug = false
incremental = false
opt-level = 3