-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (30 loc) · 707 Bytes
/
Cargo.toml
File metadata and controls
43 lines (30 loc) · 707 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
[workspace]
members = [
]
[package]
name = "asmgen"
authors = ["C2Rust", "Tyler Port"]
version = "0.0.1"
publish = false
edition = '2021'
[profile.release]
debug = true
[profile.bench]
debug = true
[dependencies]
# libc = "0.2"
# These are only used for the testing/development environment
[dev-dependencies]
# https://rust-cli.github.io/book/tutorial/testing.html
# the Rust CLI working group suggests these crates for writing tests and benchmarks.
assert_cmd = "2"
console = "0.15"
[dev-dependencies.similar]
version = "2"
features = ["text", "bytes", "inline"]
[dev-dependencies.criterion]
version = "0.3"
features = ["html_reports"]
[[bench]]
name = "optimizing_compiler"
harness = false