-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (43 loc) · 1.16 KB
/
Cargo.toml
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
[package]
name = "qcs-sdk-qir"
version = "0.1.0"
authors = [
"Kalan <[email protected]>",
"Mark Skilbeck <[email protected]>",
"Steve Manuel <[email protected]>",
]
edition = "2021"
license = "Apache-2.0"
[dependencies]
either = "1.6.1"
env_logger = "0.9.0"
eyre = "0.6.6"
lazy_static = "1.4.0"
log = "0.4.14"
num-complex = "0.4.0"
quil-rs = "0.12.0" # Part of public API, major versions are breaking changes.
regex = "1.5.4"
clap = { version = "3.1.6", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
thiserror = "1"
qcs = { version = "0.3.2", optional = true }
[dependencies.inkwell]
version = "0.1.0"
git = "https://github.com/TheDan64/inkwell"
branch = "master"
features = ["target-x86"]
[dev-dependencies]
insta = "1.8.0"
trycmd = "0.13.3"
[features]
cli = ["clap"]
output = ["qcs"] # Enables the `output` module
default = ["serde_support", "cli", "output"]
llvm12-0 = ["inkwell/llvm12-0"]
llvm13-0 = ["inkwell/llvm13-0"]
serde_support = ["serde", "serde_json"]
[[bin]]
name = "qcs-sdk-qir"
path = "src/main.rs"
required-features = ["cli"]