aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2017-04-09 22:42:17 -0500
committerJorge Aparicio <japaricious@gmail.com>2017-04-09 22:42:17 -0500
commit595404c5ffc37ce95ffb2b6999ab85e6818bfa50 (patch)
tree43688c0818f2af6fdb37ce2e3f29dd7f0ccb898b /Cargo.toml
parent6ac2625a75fc73b5cb846cd3d60422976f8946fc (diff)
compile time verified ceilings
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 16 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c51a72e..3bc0347 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"]