roc_bitcode false positive

This commit is contained in:
Anton-4 2024-04-09 20:01:33 +02:00
parent f085b96f78
commit 3d2a5897e5
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
3 changed files with 16 additions and 1 deletions

11
Cargo.lock generated
View file

@ -2254,6 +2254,16 @@ dependencies = [
"tempfile",
]
[[package]]
name = "roc_bitcode_bc"
version = "0.0.1"
dependencies = [
"dunce",
"roc_command_utils",
"roc_error_macros",
"tempfile",
]
[[package]]
name = "roc_build"
version = "0.0.1"
@ -2559,6 +2569,7 @@ dependencies = [
"inkwell",
"morphic_lib",
"roc_alias_analysis",
"roc_bitcode_bc",
"roc_builtins",
"roc_collections",
"roc_debug_flags",

View file

@ -194,4 +194,4 @@ lto = "thin" # TODO: We could consider full here since this is only used for pac
[profile.debug-full]
inherits = "dev"
debug = true
debug = true

View file

@ -10,6 +10,7 @@ version.workspace = true
[dependencies]
morphic_lib = { path = "../../vendor/morphic_lib" }
roc_alias_analysis = { path = "../alias_analysis" }
roc_bitcode_bc = { path = "../builtins/bitcode/bc" }
roc_builtins = { path = "../builtins" }
roc_collections = { path = "../collections" }
roc_debug_flags = { path = "../debug_flags" }
@ -23,3 +24,6 @@ roc_target = { path = "../roc_target" }
bumpalo.workspace = true
inkwell.workspace = true
target-lexicon.workspace = true
[package.metadata.cargo-udeps.ignore]
normal = ["roc_bitcode_bc"]