aboutsummaryrefslogtreecommitdiff
path: root/src/hash_map.zig (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-07-09fix: update build files to latest Zig versionGravatar sno2 1-3/+3
2021-12-30Upgrade to latest Zig, remove dependency on patched version of Zig (#96)Gravatar Jarred Sumner 1-29/+29
* Prepare to upgrade zig * zig fmt * AllocGate * Update data_url.zig * wip * few files * just headers now? * I think everything works? * Update mimalloc * Update hash_map.zig * Perf improvements to compensate for Allocgate * Bump * :camera: * Update bun.lockb * Less branching * [js parser] Slightly reduce memory usage * Update js_parser.zig * WIP remove unused * [JS parser] WIP support for `with` keyword * Remove more dead code * Fix all the build errors! * cleanup * Move `network_thread` up * Bump peechy * Update README.md
2021-10-23[internal] Remove more dead code, add script to find .zig files that aren't ↵Gravatar Jarred Sumner 1-1/+2
imported by other .zig files
2021-10-10[fetch] Add support for gzip & deflate to the http clientGravatar Jarred Sumner 1-1/+1
Powered by Cloudflare's zlib fork
2021-08-15rename to bunGravatar Jarred Sumner 1-5/+5
Former-commit-id: f982fc85fac3f0120e1851ad4027dd8413216439
2021-08-09Split up + generate client & server bundles, support framework +router in ↵Gravatar Jarred Sumner 1-5/+5
GenerateNodeModulesBundle , read framework from package.json + rename "publicURL" to "origin" + add import.meta.filepath Former-commit-id: 1e76ebb5375247231181ec19a6396c6acf4684fb
2021-06-27starting to workGravatar Jarred Sumner 1-9/+9
Former-commit-id: ae113559c6dd1e1e77b69ee5edee93fe59b4be2e
2021-06-26wipGravatar Jarred Sumner 1-0/+13
Former-commit-id: 506d9b81a7c9dac5dd870f6735c39df105e72fd4
2021-05-31linker thingsGravatar Jarred Sumner 1-0/+10
Former-commit-id: 73452660fd144d071cccbccfdcfa7058d9dd91a3
2021-05-29Revert "WIP"Gravatar Jarred Sumner 1-1/+1
This reverts commit b5612b303b934b668c35c1a70d64f498b7c62856 [formerly 55dcde581df46b425733508c3923e073ccdf880f]. Former-commit-id: 6c2d19c1b0d4c3e805f90cfeb8282e2c8712578a
2021-05-29WIPGravatar Jarred Sumner 1-1/+1
Former-commit-id: 55dcde581df46b425733508c3923e073ccdf880f
2021-05-29microp-optimize hash table stuffGravatar Jarred Sumner 1-4/+36
Former-commit-id: 42aaa8eb8157572ca7e80fd6b03b6566b6276a61
2021-05-28wapGravatar Jarred Sumner 1-0/+1308
Former-commit-id: efe14792991bb39e8e7d491ce5b522588fa775ca
aborted using ResponseStream and ↵Gravatar Ciro Spaciari 3-34/+174 abort event behavior (#2252) * fix deinit behavior when connection is aborted using ResponseStream * fix abort handling on stream, and get better tests * avoid segfault by trying to deinit 2x when aborted * make tests more reliable * more reliable onResolveStream after aborted * add test case for not firing the abort signal 2023-03-01fix Bun.file.arrayBuffer() segmentation fault on empty file #2248 (#2249)Gravatar Ciro Spaciari 3-7/+23 * fix Bun.file.arrayBuffer() segmentation fault on empty file #2248 * cleanner this.iotask check 2023-03-01Fix async in sqliteGravatar Colin McDonnell 1-2/+2 2023-02-28Forces a specific libdir for c-ares (#2241)Gravatar Justin Whear 1-1/+5 The c-ares build expects lib/libcares.a to exist after cmake, but on my system it was being generated in lib64. This simply sets the cmake variable so that the target ends up where we expect. 2023-02-28Make Bun.gc(true) more aggressiveGravatar Jarred Sumner 1-0/+3 2023-02-28Expose JSC::Options via `BUN_JSC_` prefixGravatar Jarred Sumner 6-8/+47 Example usage: BUN_JSC_logGC=1 bun file.js 2023-02-28fixupGravatar Jarred Sumner 1-1/+1 2023-02-28Fix typecheckGravatar Colin McDonnell 2-1/+4 2023-02-28Fix incorrect Bun version in docs (#2236)Gravatar Derrick Farris 1-1/+1 2023-02-28just some comments fix (#2237)Gravatar Ciro Spaciari 1-4/+2 2023-02-28Add `-D`, `--dev` flags for bun install (#2240)Gravatar Justin Whear 1-9/+9 * remove vendored clap * Update to latest zig-clap Major changes: * Instead of vendoring zig-clap and adding changes, this uses Hejsil/zig-clap directly as a submodule * `cli.zig` and related files have been updated to use new API (no more `flag()` or `option()`) * A workaround for the Run and Auto commands has been implemented that allows us to use the official upstream Minor change: * `-i` now has the long option `--install-fallback`; I didn't spend much time thinking about this name, so suggestions weclome. * add --development and --optional to bun install * Add support for `-D`, `--dev` in bun install, fix `--save` 2023-02-28Document punningGravatar Colin McDonnell 1-1/+18