-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 1 KB
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
[package]
name = "datafusion-roaring"
version = "0.1.2"
edition = "2024"
description = "Roaring bitmap UDFs for Apache DataFusion"
documentation = "https://docs.rs/datafusion-roaring"
repository = "https://github.com/corasaurus-hex/datafusion-roaring"
license = "MIT OR Apache-2.0"
keywords = ["datafusion", "roaring", "bitmap", "sql"]
categories = ["database", "data-structures"]
readme = "README.md"
rust-version = "1.94.0"
exclude = ["/.github", "/.gitignore", "/AGENTS.md", "/CLAUDE.md"]
[package.metadata.docs.rs]
targets = []
[dependencies]
arrow-array = { version = "59.3.0", default-features = false }
arrow-schema = { version = "59.3.0", default-features = false }
datafusion-common = { version = "55.0.0", default-features = false }
datafusion-expr = { version = "55.0.0", default-features = false }
roaring = "0.11.5"
[dev-dependencies]
datafusion = { version = "55.0.0", default-features = false, features = ["nested_expressions", "sql"] }
tokio = { version = "1.53.1", features = ["macros", "rt-multi-thread"] }