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
| [package] | |
| name = "deno_playground" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| deno_core = "0.202.0" | |
| slotmap = { version = "1.0.6", path = "deps/slotmap" } | |
| tokio = {version="1.31.0", default-features = false} |
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
| Running `rustc --crate-name serde_derive C:\Users\max\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_derive-1.0.37\src\lib.rs --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C debuginfo=2 --cfg "feature=\"default\"" -C metadata=75ae6d2c2ac3a022 -C extra-filename=-75ae6d2c2ac3a022 --out-dir Z:\nsd\deps\operations_manager\target\debug\deps -L dependency=Z:\nsd\deps\operations_manager\target\debug\deps --extern quote=Z:\nsd\deps\operations_manager\target\debug\deps\libquote-842958ad185b1cfa.rlib --extern serde_derive_internals=Z:\nsd\deps\operations_manager\target\debug\deps\libserde_derive_internals-e4b1a541701cf68c.rlib --extern syn=Z:\nsd\deps\operations_manager\target\debug\deps\libsyn-83623168e2bcdbb0.rlib --extern proc_macro2=Z:\nsd\deps\operations_manager\target\debug\deps\libproc_macro2-97bf1a5c32530a20.rlib --cap-lints allow -Ctarget-feature=+crt-static` | |
| error: linking with `link.exe` failed: exit code: 1181 | |
| | | |
| = note: "link.exe" "/NOLOGO" "/NXCOMPAT" "/LARGEADDRESSAWARE" " |
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
| root@julia MINGW32 ~ | |
| $ pacman -S git \ | |
| > make \ | |
| > diffutils \ | |
| > tar \ | |
| > mingw-w64-i686-python2 \ | |
| > mingw-w64-i686-cmake \ | |
| > mingw-w64-i686-gcc | |
| resolving dependencies... | |
| looking for conflicting packages... |
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
| var start = Date.now(); | |
| function now() { | |
| return Date.now() - start; | |
| } | |
| console.log('started'); | |
| var http = require('http'); | |
| var port = process.env.port; | |
| var server = new http.Server(); |