-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
60 lines (55 loc) · 1.86 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
[package]
authors = ["Nicolas Grislain <[email protected]>"]
name = "qrlew"
version = "0.9.27"
edition = "2021"
description = "Sarus Qrlew Engine"
documentation = "https://docs.rs/qrlew"
readme = "README.md"
homepage = "https://sarus.tech/"
repository = "https://github.com/Qrlew/qrlew"
license = "Apache-2.0"
keywords = ["sql", "data"]
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
rand = "0.8"
log = "0.4"
env_logger = "0.11"
colored = "2.0"
itertools = "0.13"
paste = "1.0.15"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
sqlparser = "0.46"
dot = "0.1"
base64 = "0.22"
rusqlite = { version = "0.31", features = ["chrono"], optional = true }
postgres = { version = "0.19", features = ["with-chrono-0_4"] }
r2d2 = "0.8"
r2d2_postgres = "0.18"
rust_decimal = { version = "1.35", features = [ "tokio-pg" ] }
statrs = "0.16.0"
sqlx = { version = "0.6.3", features = ["mssql", "runtime-tokio-native-tls", "offline", "any"], optional = true }
tokio = { version = "1.37.0", features = ["full"], optional = true }
# bigquery dependencies
gcp-bigquery-client = { version = "=0.20.0", optional = true }
wiremock = { version = "0.6", optional = true }
tempfile = { version = "3.6.0", optional = true }
yup-oauth2 = { version = "9.0", optional = true }
# mysql dependencies
mysql = { version = "25.0.1", optional = true }
r2d2_mysql = { version = "25.0.0", optional = true }
[features]
# Use SQLite for tests and examples
sqlite = ["dep:rusqlite"]
mssql = ["dep:sqlx", "dep:tokio"]
mysql = ["dep:mysql", "dep:r2d2_mysql"]
bigquery = ["dep:gcp-bigquery-client", "dep:wiremock", "dep:tempfile", "dep:yup-oauth2", "dep:tokio"]
# Tests
checked_injections = []
# Multiplicity features are tested on large datasets (may take too much memory)
tested_sampling_adjustment = []
# Display graphviz (may take long)
graphviz_display = []