Skip to content

Commit

Permalink
fix: Fix cmake unkown target error
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Nov 11, 2024
1 parent 2729e79 commit 14de050
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,33 @@
[package]
name = "libc-checks"
version = "0.1.0"
authors = ["Sergio Gasquez <sergio.gasquez@gmail.com>"]
edition = "2021"
resolver = "2"
name = "libc-checks"
version = "0.1.0"
authors = ["Sergio Gasquez <sergio.gasquez@gmail.com>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"

[[bin]]
name = "libc-checks"
name = "libc-checks"
harness = false

[profile.release]
opt-level = "s"

[profile.dev]
debug = true
debug = true
opt-level = "z"

[dependencies]
esp-idf-svc = { version = "0.49", default-features = false, features = ["alloc", "std", "binstart"] }
libc = "0.2.161"
esp-idf-svc = { version = "0.49", default-features = false, features = [
"alloc",
"binstart",
"std",
] }
libc = "0.2.162"
log = { version = "0.4", default-features = false }
# Fixes https://github.com/rust-lang/cmake-rs/pull/225. Remove once merged.
cc = "=1.1.31"


[build-dependencies]
embuild = "0.32.0"

0 comments on commit 14de050

Please # to comment.