about summary refs log tree commit diff
path: root/library/std/src
AgeCommit message (Expand)AuthorLines
2024-10-13std: xous: add support for args and envSean Cross-32/+504
2024-10-13sys/unix: add comments for some Miri fallbacksRalf Jung-1/+2
2024-10-13remove outdated comment now that Miri is on CIRalf Jung-1/+0
2024-10-13sys/windows: remove miri hack that is only needed for win7Ralf Jung-7/+3
2024-10-13merge const_ipv4 / const_ipv6 feature gate into 'ip' feature gateRalf Jung-3/+0
2024-10-12Rollup merge of #131503 - theemathas:stdin_read_line_docs, r=Mark-SimulacrumMatthias Krüger-1/+6
2024-10-12Rollup merge of #131233 - joboet:stdout-before-main, r=tgross35Trevor Gross-23/+42
2024-10-12std: fix stdout-before-mainjoboet-23/+42
2024-10-11Rollup merge of #130962 - nyurik:opts-libs, r=cuviperTrevor Gross-11/+11
2024-10-11Single commit implementing the enzyme/autodiff frontendManuel Drehwald-1/+8
2024-10-10uefi: process: Add args supportAyush Singh-12/+56
2024-10-10Use with_capacity(0) because we're reading the capacity later onMads Marquart-1/+1
2024-10-10Prefer `target_vendor = "apple"` on confstrMads Marquart-3/+3
2024-10-10use `confstr(_CS_DARWIN_USER_TEMP_DIR, ...)` as a `TMPDIR` fallback on darwinThom Chiovoloni-7/+109
2024-10-10More clearly document Stdin::read_lineTim (Theemathas) Chirananthavat-1/+6
2024-10-09Rollup merge of #131462 - cuviper:open_buffered-error, r=RalfJungMatthias Krüger-1/+2
2024-10-09Rollup merge of #131449 - nickrum:wasip2-net-decouple-fd, r=alexcrichtonMatthias Krüger-18/+58
2024-10-09Rollup merge of #130827 - fmease:library-mv-obj-save-dyn-compat, r=ibraheemdevMatthias Krüger-1/+3
2024-10-09Mention allocation errors for `open_buffered`Josh Stone-1/+2
2024-10-09Library: Rename "object safe" to "dyn compatible"León Orell Valerian Liehr-1/+3
2024-10-09Decouple WASIp2 sockets from WasiFdNicola Krumschmidt-18/+58
2024-10-08Update library/std/src/sys/pal/unix/process/process_vxworks.rsYuri Astrakhan-1/+1
2024-10-08fix ref in process_vxworks.rsYuri Astrakhan-1/+1
2024-10-08Update library/std/src/sys/pal/unix/process/process_unix.rsYuri Astrakhan-1/+1
2024-10-08Change a few `&Option<T>` into `Option<&T>`Yuri Astrakhan-10/+10
2024-10-06Rollup merge of #131307 - YohDeadfall:prctl-set-name-dbg-assert, r=workingjub...Matthias Krüger-1/+3
2024-10-05Unbreak tidyPavel Grigorenko-5/+5
2024-10-05Stabilize `std::io::ErrorKind::QuotaExceeded`Pavel Grigorenko-9/+9
2024-10-05Android: Debug assertion after setting thread nameYoh Deadfall-1/+3
2024-10-05Rollup merge of #131094 - joboet:lazy_once_box, r=ibraheemdevMatthias Krüger-284/+185
2024-10-04Stabilize `BufRead::skip_until`okaneco-3/+1
2024-10-03std::fs::get_path freebsd update.David Carlier-2/+2
2024-10-03Rollup merge of #131163 - JakenHerman:master, r=NadrierilMatthias Krüger-0/+1
2024-10-03Auto merge of #128711 - clarfonthey:default-iters-hash, r=dtolnaybors-0/+80
2024-10-02Add `get_line` confusable to `Stdin::read_line()`Jaken Herman-0/+1
2024-10-02impl Default for Hash{Map,Set} iterators that don't already have itltdk-0/+80
2024-10-03Auto merge of #127912 - joboet:tls_dtor_thread_current, r=cuviperbors-132/+529
2024-10-03Auto merge of #131148 - Urgau:hashbrown-0.15, r=Amanieubors-114/+55
2024-10-02std: make `thread::current` available in all `thread_local!` destructorsjoboet-132/+529
2024-10-02Update hashbrown to 0.15 and adjust some methodsUrgau-114/+55
2024-10-02mpmc doctest: make sure main thread waits for child threadsRalf Jung-22/+24
2024-10-01std: replace `LazyBox` with `OnceBox`joboet-284/+185
2024-10-01Auto merge of #131098 - GuillaumeGomez:rollup-kk74was, r=GuillaumeGomezbors-1/+1
2024-10-01Auto merge of #126839 - obeis:mpmc, r=Amanieubors-49/+1732
2024-10-01make test_lots_of_insertions test take less long in MiriRalf Jung-1/+1
2024-09-30Rollup merge of #130914 - compiler-errors:insignificant-dtor, r=AmanieuTrevor Gross-0/+1
2024-09-30Rollup merge of #129638 - nickrum:wasip2-net, r=alexcrichtonTrevor Gross-44/+503
2024-09-30Win: Add test cases for renaming a directory while the target file is opened ...George Tokmaji-0/+41
2024-09-30Win: Use `FILE_RENAME_FLAG_POSIX_SEMANTICS` for `std::fs::rename` if availableGeorge Tokmaji-4/+168
2024-09-30Add multi-producer, multi-consumer channel (mpmc)Obei Sideg-49/+1732