summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/test/frontend/data/rust-library-invalid-crate-type/Cargo.toml
blob: b0da98887db3990d08c6c4f9631f515fb7216964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "random-crate"
version = "0.1.0"
authors = [
  "The Mozilla Project Developers",
]

[lib]
crate-type = ["dylib"]

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

[dependencies]
mozilla-central-workspace-hack = { version = "0.1", features = ["random-crate"], optional = true }