blob: f2f6360f2d21957737311c979ad039a623c4803f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "subcrate"
version = "0.1.0"
authors = ["Miri Team"]
# This is deliberately *not* on the 2024 edition to ensure doctests keep working
# on old editions.
edition = "2018"
[lib]
[[bin]]
name = "subcrate"
path = "main.rs"
[[test]]
name = "subtest"
path = "test.rs"
harness = false
[dev-dependencies]
byteorder = "1.0"
|