Skip to content

Releases: co-rs/mco

v0.1.43

22 Feb 17:41
Compare
Choose a tag to compare

v0.1.43

  • add task pool

v0.1.42

22 Feb 17:23
Compare
Choose a tag to compare

v0.1.42

  • add task pool

v0.1.41

20 Feb 18:07
Compare
Choose a tag to compare

v0.1.41

  • fix syncmap/syncvec drop method

v0.1.40

19 Feb 19:00
Compare
Choose a tag to compare

v0.1.40

  • SyncHashmap,SyncBtreemap use transmute_copy replace *const T
  • add SyncVec struct

v0.1.39

17 Feb 19:16
Compare
Choose a tag to compare

v0.1.39

  • defer use FnMut, and use $(;)? on block

v0.1.38

17 Feb 12:19
Compare
Choose a tag to compare

v0.1.38

  • Time return self replace &mut self

v0.1.37

16 Feb 07:47
Compare
Choose a tag to compare

v0.1.37

  • rename project

v0.1.36

13 Feb 08:49
Compare
Choose a tag to compare

v0.1.36

  • fix mpsc_list_v1 error

v0.1.35

08 Feb 20:57
Compare
Choose a tag to compare

v0.1.35

  • use AtomicCell replace AtomicPtr. so, don't need Wrapped trait
  • remove cancel method unsafe tag.

v0.1.33

08 Feb 02:49
Compare
Choose a tag to compare

v0.1.33

  • add spawn_blocking method Used to handle blocking operations, such as reading and writing files, and busy CPU calculations
    for example:
    let v = cogo::spawn_blocking!(|| {
        return 1;
    });
    assert_eq!(v.unwrap(), 1);