Skip to content

Commit b887ea0

Browse files
committed
Chore: bump outdated num and rustc versions
1 parent 412510c commit b887ea0

File tree

1 file changed

+35
-22
lines changed

1 file changed

+35
-22
lines changed

Cargo.toml

+35-22
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,30 @@
11
[package]
2-
edition = "2018"
3-
name = "arrayfire"
4-
description = "ArrayFire is a high performance software library for parallel computing with an easy-to-use API. Its array based function set makes parallel programming simple. ArrayFire's multiple backends (CUDA, OpenCL and native CPU) make it platform independent and highly portable. A few lines of code in ArrayFire can replace dozens of lines of parallel computing code, saving you valuable time and lowering development costs. This crate provides Rust bindings for ArrayFire library."
5-
version = "3.8.0"
2+
edition = "2018"
3+
name = "arrayfire"
4+
description = "ArrayFire is a high performance software library for parallel computing with an easy-to-use API. Its array based function set makes parallel programming simple. ArrayFire's multiple backends (CUDA, OpenCL and native CPU) make it platform independent and highly portable. A few lines of code in ArrayFire can replace dozens of lines of parallel computing code, saving you valuable time and lowering development costs. This crate provides Rust bindings for ArrayFire library."
5+
version = "3.8.0"
66
documentation = "http://arrayfire.github.io/arrayfire-rust/arrayfire/index.html"
7-
homepage = "https://github.com/arrayfire/arrayfire"
8-
repository = "https://github.com/arrayfire/arrayfire-rust"
9-
authors = ["Pradeep Garigipati <pradeep@arrayfire.com>", "Jason Ramapuram <jason.ramapuram@gmail.com>"]
10-
readme = "./README.md"
11-
keywords = ["CUDA", "OpenCL", "ArrayFire", "Compute"]
12-
license = "BSD-3-Clause"
13-
build = "build.rs"
14-
exclude = [
15-
"arrayfire/*",
7+
homepage = "https://github.com/arrayfire/arrayfire"
8+
repository = "https://github.com/arrayfire/arrayfire-rust"
9+
authors = [
10+
"Pradeep Garigipati <pradeep@arrayfire.com>",
11+
"Jason Ramapuram <jason.ramapuram@gmail.com>",
1612
]
13+
readme = "./README.md"
14+
keywords = ["CUDA", "OpenCL", "ArrayFire", "Compute"]
15+
license = "BSD-3-Clause"
16+
build = "build.rs"
17+
exclude = ["arrayfire/*"]
1718

1819
[workspace]
19-
members = [
20-
"cuda-interop",
21-
"opencl-interop",
22-
]
20+
members = ["cuda-interop", "opencl-interop"]
2321

2422
[lib]
2523
name = "arrayfire"
2624
path = "src/lib.rs"
2725

2826
[package.metadata.docs.rs]
29-
rustdoc-args = [ "--html-in-header", "./scripts/mathjax.script", ]
27+
rustdoc-args = ["--html-in-header", "./scripts/mathjax.script"]
3028

3129
[features]
3230
algorithm = []
@@ -44,13 +42,28 @@ signal = []
4442
sparse = []
4543
statistics = []
4644
vision = []
47-
default = ["algorithm", "arithmetic", "blas", "data", "indexing", "graphics", "image", "lapack",
48-
"ml", "macros", "random", "signal", "sparse", "statistics", "vision"]
45+
default = [
46+
"algorithm",
47+
"arithmetic",
48+
"blas",
49+
"data",
50+
"indexing",
51+
"graphics",
52+
"image",
53+
"lapack",
54+
"ml",
55+
"macros",
56+
"random",
57+
"signal",
58+
"sparse",
59+
"statistics",
60+
"vision",
61+
]
4962
afserde = ["serde"]
5063

5164
[dependencies]
5265
libc = "0.2"
53-
num = "0.2"
66+
num = "0.4"
5467
lazy_static = "1.0"
5568
half = "1.5.0"
5669
serde = { version = "1.0", features = ["derive"], optional = true }
@@ -64,7 +77,7 @@ bincode = "1.3"
6477
serde_json = "1.0"
6578
serde_derive = "1.0"
6679
serde = "1.0"
67-
rustc_version = "0.2"
80+
rustc_version = "0.3"
6881

6982
[[example]]
7083
name = "helloworld"

0 commit comments

Comments
 (0)