-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
36 lines (29 loc) · 916 Bytes
/
Cargo.toml
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
[package]
name = "dylint-link"
version = "3.5.0"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A wrapper around Rust's default linker to help create Dyling libraries"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/trailofbits/dylint"
[dependencies]
anyhow = { workspace = true }
env_logger = { workspace = true }
if_chain = { workspace = true }
toml_edit = { workspace = true }
dylint_internal = { version = "=3.5.0", path = "../internal", features = [
"cargo",
] }
[build-dependencies]
dylint_internal = { version = "=3.5.0", path = "../internal" }
[dev-dependencies]
assert_cmd = { workspace = true }
predicates = { workspace = true }
tempfile = { workspace = true }
dylint_internal = { version = "=3.5.0", path = "../internal", features = [
"packaging",
] }
[lints]
workspace = true
[target.'cfg(target_os = "windows")'.dependencies]
cc = "1.2"