about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-07-19 15:37:24 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-07-19 15:37:24 -0500
commitdc55f580049d284c6e01271e3885c4fa23a8f458 (patch)
tree64112d4525410ef3ca8553901af81f5df1e216da /README.md
parent6b32698b3e020e5910c92b72a1677e7cd56287d6 (diff)
downloadvoidsky-dc55f580049d284c6e01271e3885c4fa23a8f458.tar.zst
Replace mobx-state-tree with mobx and get a basic home feed rendering
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index bbd390462..2133d9c6d 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Uses:
 - [React Native](https://reactnative.dev)
 - [React Native for Web](https://necolas.github.io/react-native-web/)
 - [React Navigation](https://reactnative.dev/docs/navigation#react-navigation)
-- [MobX](https://mobx.js.org/README.html) and [MobX State Tree](https://mobx-state-tree.js.org/)
+- [MobX](https://mobx.js.org/README.html)
 - [Async Storage](https://github.com/react-native-async-storage/async-storage)
 
 ## TODOs
@@ -54,7 +54,7 @@ The `metro.config.js` file rewrites a couple of imports. This is partly to work
 
 ### Cryptography
 
-For native builds, we must provide a polyfill of `webcrypto`. We use a custom native module AppSecureRandom (based on [react-native-securerandom](https://github.com/robhogan/react-native-securerandom)) for the CRNG and [msrcrypto](https://github.com/kevlened/msrCrypto) for the cryptography.
+For native builds, we must provide a polyfill of `webcrypto`. We use a custom native module AppSecureRandom (based on [react-native-securerandom](https://github.com/robhogan/react-native-securerandom)) for the CRNG and [msrcrypto](https://github.com/microsoft/MSR-JavaScript-Crypto) for the cryptography.
 
 **NOTE** Keys are not currently stored securely.