forked from universalmind303/polars-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (29 loc) · 787 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
39
[package]
name = "polars-mongo"
version = "0.2.0"
edition = "2021"
authors = ["universalmind303 <[email protected]>"]
license = "MIT"
keywords = ["dataframe", "query-engine", "arrow", "polars", "database"]
description = "Connector to read polars dataframes from mongodb collections"
repository = "https://github.com/universalmind303/polars-mongo/"
[lib]
crate-type = ["lib"]
[dependencies]
num = "^0.4"
polars-time = "0.24.0"
polars-core = "0.24.0"
serde = {version = "1.0.137", features = ["derive", "rc"], optional = true}
[dependencies.mongodb]
version = "2.2.1"
default-features = false
features = ["sync"]
[dependencies.polars]
version = "0.24.0"
features = ["lazy", "dtype-full"]
[profile.release]
lto = "fat"
[workspace]
members = [
"examples/read_collection"
]