Moved to https://github.com/tessel/tessel-rust#overview-for-using-rust-on-tessel so folks can open PRs on it.
- Install dependencies:
brew install sdl openssl gettext - Add the
binfolder ofgettextto your path:export PATH=$PATH:/usr/local/Cellar/gettext/0.19.4/bin - Go through steps 1-9 here
git clone --recursive https://github.com/tessel/openwrt-tessel.gitcd openwrt-tessel- Replace
openwrt/tools/mkimage/Makefilewith the file included in this Gist of the similar name (an artifact of OSX being unable to link against SSL development headers). Make sure to change lines 35 and 36 with a valid link to theopenssllibrarybrewinstalled in the previous step, if necessary. I created it by combining this debugging suggestion which didn't work and this updated file on master which also didn't work on its own. make V=99
/Applications/Xcode.app/Contents/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import hashlib | |
| import hmac | |
| import time | |
| import starlette | |
| WEBHOOK_SIGNING_KEY = "<YOUR_WEBHOOK_SIGNING_KEY>" | |
| SECONDS_TO_STALE = 300 # 5 minutes |
OlderNewer