Rust: disable libc std

This commit is contained in:
Alex Kotov 2022-01-31 09:38:09 +05:00
parent 8c50c6ab71
commit 857ec33335
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 4 additions and 2 deletions

View File

@ -12,5 +12,7 @@ keywords = ["ffi", "no_std", "no-std", "embedded", "bindings"]
categories = ["embedded", "external-ffi-bindings", "no-std", "parsing"]
publish = true
[dependencies]
libc = "0.2.113"
[dependencies.libc]
version = "0.2.113"
default-features = false
features = ["extra_traits"]