• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "common"
3version = "0.1.0"
4edition = "2018"
5
6# Required to satisfy cargo but no `lib.rs` is expected to
7# exist within test data.
8[lib]
9path = "lib.rs"
10
11[[bin]]
12name = "common-bin"
13path = "main.rs"
14
15[[test]]
16name = "common-test"
17path = "test.rs"
18
19# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
20
21[dependencies]
22bitflags = "=1.3.2"
23cfg-if = "=1.0.0"
24