-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
38 lines (35 loc) · 998 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
35
36
37
38
[package]
name = "scyllapy"
version = "0.0.0"
edition = "2021"
[lib]
name = "scyllapy"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.31"
eq-float = "0.1.0"
futures = "0.3.28"
log = "0.4.20"
openssl = { version = "0.10.57", features = ["vendored"] }
pyo3 = { version = "0.20.0", features = [
"auto-initialize",
"abi3-py38",
"extension-module",
"chrono",
] }
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] }
pyo3-log = "0.9.0"
rustc-hash = "1.1.0"
scylla = { version = "0.12.0", features = ["ssl", "full-serialization"] }
bigdecimal-04 = { package = "bigdecimal", version = "0.4" }
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["bytes"] }
uuid = { version = "1.4.1", features = ["v4"] }
time = { version = "*", features = ["formatting", "macros"] }
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
debug = false
panic = "abort"