Skip to content

Commit 0d13238

Browse files
committed
Add DType, Tensor & friends to providers crate
1 parent 9755531 commit 0d13238

4 files changed

Lines changed: 393 additions & 1 deletion

File tree

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/providers/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@ license.workspace = true
99
name = "qiskit_providers"
1010

1111
[dependencies]
12+
rustworkx-core.workspace = true
13+
anyhow.workspace = true
14+
num-complex.workspace = true
1215

1316
[dependencies.hashbrown]
1417
workspace = true
1518
features = ["rayon", "serde"]
1619

1720
[lints]
1821
workspace = true
22+
23+
[dependencies.ndarray]
24+
workspace = true
25+
features = ["rayon", "approx"]

crates/providers/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
// that they have been altered from the originals.
1212

1313
mod data_tree;
14-
14+
pub mod tensor;
1515
pub use data_tree::{DataTree, PathEntry};

0 commit comments

Comments
 (0)