diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -4,9 +4,21 @@ build = "build.rs" name = "cortex-m-srp" version = "0.1.0" +[build-dependencies] +quote = "0.3.15" +syn = "0.11.10" + [dependencies] -cortex-m = "0.2.0" +cortex-m = "0.2.2" +typenum = "1.7.0" + +[dev-dependencies] +compiletest_rs = "0.2.5" -[dependencies.vcell] -features = ["const-fn"] -version = "0.1.0"
\ No newline at end of file +[features] +# Number of priority bits +P2 = [] +P3 = [] +P4 = [] +P5 = [] +default = ["P4"] |
