This repository was archived by the owner on Sep 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (56 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
69 lines (56 loc) · 1.4 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
description = "Open Source, High Performance & Hardware Accelerated, Quantum Computer Simulation in Rust"
name = "qcgpu"
version = "0.1.0"
authors = ["Adam Kelly <adamkelly2201@gmail.com>"]
documentation = "https://qcgpu.github.io/qcgpu-rust/doc/qcgpu/index.html"
homepage = "https://qcgpu.github.com/"
readme = "./README.md"
keywords = ["quantum", "computation", "gpu", "simulation"]
license = "MIT"
exclude = ["algorithms/**/*", "benches/**/*", "examples/**/*", ".editorconfig", "EC2-install.md", "ISSUE_TEMPLATE.md", "PULL_REQUEST_TEMPLATE.md"]
[badges]
travis-ci = { repository = "qcgpu/qcgpu-rust", branch = "master" }
maintenance = { status = "actively-developed" }
[features]
default = []
decoherence = []
[lib]
name = "qcgpu"
path = "src/lib.rs"
[dependencies]
num-complex = "0.1.43"
rand = "0.4.2"
ocl = "0.18"
[dev-dependencies]
criterion = "0.2.2"
libquantum-patched = "0.1.3"
[[bench]]
name = "benchmark"
harness = false
[[bench]]
name = "qiskit"
harness = false
[[bench]]
name = "libquantum"
harness = false
[[example]]
name = "bernstein-vazirani"
doc = false
path = "algorithms/bernstein-vazirani.rs"
[[example]]
name = "deutsch-jozsa"
doc = false
path = "algorithms/deutsch-jozsa.rs"
[[example]]
name = "superdense"
doc = false
path = "algorithms/super-dense.rs"
[[example]]
name = "shor"
doc = false
path = "algorithms/shor.rs"
[[example]]
name = "grover"
doc = false
path = "algorithms/grover.rs"