| 1 | [package] |
| 2 | name = "stm32-fmc" |
| 3 | version = "0.3.2" |
| 4 | authors = ["Richard Meadows <richard@richard.fish>" ] |
| 5 | edition = "2018" |
| 6 | categories = ["embedded" , "hardware-support" , "no-std" ] |
| 7 | description = "Hardware Abstraction Layer for STM32 Memory Controllers (FMC/FSMC)" |
| 8 | keywords = ["stm32" , "fmc" , "sdram" , "memory" ] |
| 9 | repository = "https://github.com/stm32-rs/stm32-fmc" |
| 10 | license = "MIT/Apache-2.0" |
| 11 | readme = "README.md" |
| 12 | exclude = [".gitignore" ] |
| 13 | |
| 14 | [package.metadata.docs.rs] |
| 15 | features = ["sdram" , "nand" ] |
| 16 | |
| 17 | [dependencies.log] |
| 18 | version = "^0.4.8" |
| 19 | default-features = false |
| 20 | optional = true |
| 21 | |
| 22 | [dependencies.defmt] |
| 23 | version = "0.3" |
| 24 | optional = true |
| 25 | |
| 26 | [dependencies] |
| 27 | embedded-hal = "0.2.4" |
| 28 | |
| 29 | [dev-dependencies] |
| 30 | paste = "1.0" |
| 31 | |
| 32 | [features] |
| 33 | trace-register-values = [] |
| 34 | sdram = [] |
| 35 | nand = [] |
| 36 | default = ["sdram" , "nand" ] |
| 37 | |