diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2017-04-09 22:42:17 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2017-04-09 22:42:17 -0500 |
| commit | 595404c5ffc37ce95ffb2b6999ab85e6818bfa50 (patch) | |
| tree | 43688c0818f2af6fdb37ce2e3f29dd7f0ccb898b /Cargo.toml | |
| parent | 6ac2625a75fc73b5cb846cd3d60422976f8946fc (diff) | |
compile time verified ceilings
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"] |
