-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (34 loc) · 842 Bytes
/
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
[package]
name = "quantpiler"
version = "0.3.5"
authors = ["Alexander Averyanov <[email protected]>"]
edition = "2021"
description = "Сompiler of classical algorithms into oracles for quantum computing"
readme = "README.md"
repository = "https://github.com/averyanalex/quantpiler"
license = "AGPL-3.0-or-later"
categories = ["compilers", "science"]
[lib]
name = "quantpiler"
crate-type = ["cdylib"]
[dependencies]
egg = "0.9.5"
itertools = "0.12.0"
num = "0.4.1"
rand = "0.8.5"
rustc-hash = "1.1.0"
petgraph = "0.6.4"
log = "0.4.20"
pyo3 = { version = "0.20.0", features = ["extension-module"], optional = true }
[features]
python = ["pyo3"]
# default = ["python"]
[profile.release]
lto = "thin"
overflow-checks = true
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[package.metadata.docs.rs]
all-features = true