forked from nrf-rs/nrfxlib-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 1.3 KB
/
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
37
38
39
40
41
42
[package]
name = "nrfxlib-sys"
version = "2.6.0"
authors = [
"Jonathan 'theJPster' Pallant <[email protected]>",
"42 Technology Ltd <[email protected]>",
]
edition = "2018"
description = "Rust bindings to the Nordic nRF9160 Socket Library."
readme = "README.md"
license-file = "LICENCE.md"
repository = "https://github.com/42-technology-ltd/nrfxlib-sys"
resolver = "2"
# The nrfxlib folder is quite large, so only include the pieces we need
include = [
"src/**",
"include/**",
"build.rs",
"wrapper.h",
"*.md",
"third_party/nordic/nrfxlib/nrf_modem/lib/nRF9160/hard-float/**",
"third_party/nordic/nrfxlib/nrf_modem/include/**",
"third_party/nordic/nrfxlib/nrf_modem/license.txt",
"third_party/nordic/nrfxlib/nrf_modem/README.rst",
"third_party/nordic/nrfxlib/crypto/nrf_cc310_platform/include/**",
"third_party/nordic/nrfxlib/crypto/nrf_cc310_platform/license.txt",
"third_party/nordic/nrfxlib/crypto/nrf_cc310_mbedcrypto/include/**",
"third_party/nordic/nrfxlib/crypto/nrf_cc310_mbedcrypto/license.txt",
"third_party/nordic/nrfxlib/crypto/nrf_oberon/lib/cortex-m33/hard-float/**",
"third_party/nordic/nrfxlib/crypto/nrf_oberon/include/**",
"third_party/nordic/nrfxlib/crypto/nrf_oberon/license.txt",
]
[dependencies]
[build-dependencies]
regex = "1"
bindgen = "0.69"
[features]
log = []