-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 828 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 828 Bytes
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
[workspace.package]
authors = ["Matthijs Brobbel <m1brobbel@gmail.com>"]
edition = "2024"
rust-version = "1.85.1"
description = "GPU dataframes using cuDF"
readme = "README.md"
repository = "https://github.com/mbrobbel/cudf-rs"
documentation = "http://docs.rs/cudf/"
license = "Apache-2.0"
keywords = ["GPU", "Dataframe", "Arrow"]
categories = []
[workspace]
members = ["cudf-sys"]
[package]
name = "cudf"
version = "0.0.0+25.10.00"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
readme.workspace = true
repository.workspace = true
documentation.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
[package.metadata.docs.rs]
all-features = true
[features]
default = []
[dependencies]
cudf-sys = { path = "cudf-sys" }