-
- Downloads
Uploaded to wrong repository FIXED
Showing
- .vscode/launch.json 32 additions, 27 deletions.vscode/launch.json
- Cargo.toml 12 additions, 57 deletionsCargo.toml
- README.md 22 additions, 16 deletionsREADME.md
- src/header.rs 161 additions, 0 deletionssrc/header.rs
- src/lib.rs 9 additions, 0 deletionssrc/lib.rs
- src/options.rs 152 additions, 0 deletionssrc/options.rs
- src/packet.rs 14 additions, 0 deletionssrc/packet.rs
[package] | [package] | ||
name = "d7018e_coap" | name = "xoap" | ||
version = "0.1.0" | version = "0.1.0" | ||
authors = ["Joakim Lundberg <joakim@joakimlundberg.com>"] | description = "A CoAP library for bare-metal applications" | ||
categories = ["embedded", "hardware-support", "no-std"] | |||
description = "CoAP on embedded rust" | |||
readme = "README.md" | readme = "README.md" | ||
repository = "https://github.com/Shawnshank/D7018E_Project" | documentation = "" | ||
keywords = ["CoAP", "Embedded", "arm", "stm32"] | repository = "" | ||
license = "MIT OR Apache-2.0" | license = "MIT OR Apache-2.0" | ||
authors = ["Joakim Lundberg <joakim@joakimlundberg.com>"] | |||
keywords = ["CoAP", "xoap"] | |||
[dependencies] | [dependencies] | ||
cortex-m-semihosting = "0.2.0" | # Baremetal dependencies | ||
static-ref = "0.2.0" | heapless = {version = "0.2.1"} | ||
volatile-register = "0.2.0" | #nb = {git = "https://github.com/japaric/nb", optional = true} | ||
m = "0.1.1" | cast = {default-features = false, version = "0.2.2", optional = true} | ||
heapless = "0.2.4" | |||
f4 = {git = "https://github.com/jsjolund/f4"} | |||
#xoap = { path = "../projects/xoap", version = "0.1.0", default-features = false, features = ["baremetal"] }# git = "https://github.com/Shawnshank/xoap" | |||
[dependencies.smoltcp] | |||
git = "https://github.com/m-labs/smoltcp" | |||
rev = "cd893e6a" | |||
default-features = false | |||
features = ["proto-ipv4", "socket-tcp"] | |||
[dependencies.stm32f40x] | |||
git = "https://gitlab.henriktjader.com/pln/STM32F40x.git" | |||
features = ["rt"] | |||
version = "0.2.0" | |||
[dependencies.cast] | |||
default-features = false | |||
version = "0.2.2" | |||
[dependencies.cortex-m] | |||
version = "0.3.1" | |||
[dependencies.either] | |||
default-features = false | |||
version = "1.3.0" | |||
[dependencies.embedded-hal] | |||
git = "https://github.com/japaric/embedded-hal" | |||
rev = "7d904f515d15fd5fe7ea34e18820ea83e2651fa2" | |||
[dependencies.nb] | |||
git = "https://github.com/japaric/nb" | |||
[dependencies.cortex-m-rt] | |||
features = ["abort-on-panic"] | |||
version = "0.3.8" | |||
[dependencies.cortex-m-debug] | |||
git = "https://gitlab.henriktjader.com/pln/cortex-m-debug.git" | |||
[dependencies.cortex-m-rtfm] | |||
version = "0.2.0" | |||
[profile.release] | [dev-dependencies] | ||
lto = true | quickcheck = "0.2.27" | ||
[profile.dev] | |||
incremental = false | |||
codegen-units = 1 | |||
\ No newline at end of file |
src/header.rs
0 → 100644
src/lib.rs
0 → 100644
src/options.rs
0 → 100644
src/packet.rs
0 → 100644
Please register or sign in to comment