-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 924 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 924 Bytes
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
[package]
name = "soam"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[env]
RUST_LOG = "debug"
[lib]
path = "src/lib.rs"
[[bin]]
name = "soam"
path = "src/main.rs"
[dependencies]
# qasmsim = "1.3.1"
log = "0.4.21"
ordered-float = "4.2.0"
toml = "0.8.11"
serde = { version = "1.0.197", features = ["derive"] }
itertools = "0.12.1"
rayon = "1.9.0"
derive_more = { version = "1.0.0-beta.6", features = ["full"] }
csv = "1.3.0"
msgpack-rpc = "0.4.2"
futures = "0.3.30"
tokio = { version = "1.36.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["codec", "compat"] }
order-maintenance = "0.1.1"
petgraph = "0.6.5"
regex = "1.5.4"
meval = "0.2.0"
roqc = { path = "./resources/roqc/roqc" }
circuit = { path = "./resources/roqc/circuit" }
env_logger = "0.10"
rcu_list = "0.1.1"
dashmap = "6.1.0"
shellexpand = "3.1.0"