diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-18 11:30:32 +0200 | 
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:42:52 +0300 | 
| commit | f224a5614bee4a765646408416f191ba9e56bf3f (patch) | |
| tree | 9084fc30c2cb83372b4f5dab1b1234a5a2cf8b45 /gnu | |
| parent | 995f8fb7991edad84b40749c0572ad165639be51 (diff) | |
gnu: Add rust-local-waker-0.1.
* gnu/packages/crates-io.scm (rust-local-waker-0.1): New variable.
Change-Id: Id7aaca425f5587c9c49098207b4da6e420de7f9d
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/crates-io.scm | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f24afab8c3..c1780c7c31 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -37057,6 +37057,24 @@ can also be used outside of a proc-macro context.")      (description "This package provides an LLVM Bitcode parser in Rust.")      (license license:expat))) +(define-public rust-local-waker-0.1 +  (package +    (name "rust-local-waker") +    (version "0.1.4") +    (source +     (origin +       (method url-fetch) +       (uri (crate-uri "local-waker" version)) +       (file-name (string-append name "-" version ".tar.gz")) +       (sha256 +        (base32 "11vlcm8q6dhdf0srkgjnwca48dn9zcz820fq20hv82ffcxy3v1sd")))) +    (build-system cargo-build-system) +    (home-page "https://github.com/actix/actix-net") +    (synopsis "Synchronization primitive for thread-local task wakeup") +    (description "This package provides a synchronization primitive for +thread-local task wakeup.") +    (license (list license:expat license:asl2.0)))) +  (define-public rust-locale-0.2    (package      (name "rust-locale") | 
