mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add rust-tokio-1.
* gnu/packages/crates-io.scm (rust-tokio-1): New variable. (rust-tokio-0.3): Inherit from above. (rust-tokio-macros-1): New variable. (rust-tokio-macros-0.3): Inherit from above. (rust-tokio-stream-0.1): New variable. (rust-tokio-test-0.4): New variable. (rust-tokio-test-0.3): Inherit from above.
This commit is contained in:
parent
bc67bc0810
commit
c9c653603b
1 changed files with 131 additions and 22 deletions
|
@ -32310,8 +32310,52 @@ (define-public rust-tinyvec-0.3
|
||||||
"A 100% safe crate of vec-like types.")
|
"A 100% safe crate of vec-like types.")
|
||||||
(license (list license:zlib license:asl2.0 license:expat))))
|
(license (list license:zlib license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-tokio-1
|
||||||
|
(package
|
||||||
|
(name "rust-tokio")
|
||||||
|
(version "1.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tokio" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1gd6qc9xvm568kicbkch40kjn5w0q2nsn527gcy80v3baqgj4n6j"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #false ;FIXME: unresolved import
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-autocfg" ,rust-autocfg-1)
|
||||||
|
("rust-bytes" ,rust-bytes-1)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-memchr" ,rust-memchr-2)
|
||||||
|
("rust-mio" ,rust-mio-0.7)
|
||||||
|
("rust-num-cpus" ,rust-num-cpus-1)
|
||||||
|
("rust-once-cell" ,rust-once-cell-1)
|
||||||
|
("rust-parking-lot" ,rust-parking-lot-0.11)
|
||||||
|
("rust-pin-project-lite" ,rust-pin-project-lite-0.2)
|
||||||
|
("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
|
||||||
|
("rust-tokio-macros" ,rust-tokio-macros-1)
|
||||||
|
("rust-tracing" ,rust-tracing-0.1)
|
||||||
|
("rust-winapi" ,rust-winapi-0.3))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-async-stream" ,rust-async-stream-0.3)
|
||||||
|
("rust-futures" ,rust-futures-0.3)
|
||||||
|
("rust-loom" ,rust-loom-0.4)
|
||||||
|
("rust-nix" ,rust-nix-0.19)
|
||||||
|
("rust-proptest" ,rust-proptest-0.10)
|
||||||
|
("rust-tokio-stream" ,rust-tokio-stream-0.1)
|
||||||
|
("rust-tokio-test" ,rust-tokio-test-0.4))))
|
||||||
|
(home-page "https://tokio.rs")
|
||||||
|
(synopsis "Event-driven, non-blocking I/O platform")
|
||||||
|
(description
|
||||||
|
"This package provides an event-driven, non-blocking I/O platform for
|
||||||
|
writing asynchronous I/O backed applications.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-tokio-0.3
|
(define-public rust-tokio-0.3
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-tokio-1)
|
||||||
(name "rust-tokio")
|
(name "rust-tokio")
|
||||||
(version "0.3.5")
|
(version "0.3.5")
|
||||||
(source
|
(source
|
||||||
|
@ -32321,7 +32365,6 @@ (define-public rust-tokio-0.3
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0lj26zy5k1dbln0599bn918z5j16wz5iyzs8cjz33hp2ksrkwam1"))))
|
(base32 "0lj26zy5k1dbln0599bn918z5j16wz5iyzs8cjz33hp2ksrkwam1"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;FIXME: fail due to unresolved imports
|
`(#:tests? #f ;FIXME: fail due to unresolved imports
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -32345,13 +32388,7 @@ (define-public rust-tokio-0.3
|
||||||
("rust-loom" ,rust-loom-0.3)
|
("rust-loom" ,rust-loom-0.3)
|
||||||
("rust-nix" ,rust-nix-0.19)
|
("rust-nix" ,rust-nix-0.19)
|
||||||
("rust-proptest" ,rust-proptest-0.10)
|
("rust-proptest" ,rust-proptest-0.10)
|
||||||
("rust-tokio-test" ,rust-tokio-test-0.3))))
|
("rust-tokio-test" ,rust-tokio-test-0.3))))))
|
||||||
(home-page "https://tokio.rs")
|
|
||||||
(synopsis "Event-driven, non-blocking I/O platform")
|
|
||||||
(description
|
|
||||||
"This package provides an event-driven, non-blocking I/O platform for
|
|
||||||
writing asynchronous I/O backed applications.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-tokio-0.2
|
(define-public rust-tokio-0.2
|
||||||
(package
|
(package
|
||||||
|
@ -32713,8 +32750,32 @@ (define-public rust-tokio-io-pool-0.1
|
||||||
futures efficiently")
|
futures efficiently")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-tokio-macros-1
|
||||||
|
(package
|
||||||
|
(name "rust-tokio-macros")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tokio-macros" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "150l6wfcqw2rcjaf22qk3z6ca794x0s2c68n5ar18cfafllpsla2"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #false ;FIXME: undeclared type `tokio`
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||||
|
("rust-quote" ,rust-quote-1)
|
||||||
|
("rust-syn" ,rust-syn-1))))
|
||||||
|
(home-page "https://tokio.rs")
|
||||||
|
(synopsis "Tokio's proc macros")
|
||||||
|
(description "This package provides Tokio's proc macros.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-tokio-macros-0.3
|
(define-public rust-tokio-macros-0.3
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-tokio-macros-1)
|
||||||
(name "rust-tokio-macros")
|
(name "rust-tokio-macros")
|
||||||
(version "0.3.2")
|
(version "0.3.2")
|
||||||
(source
|
(source
|
||||||
|
@ -32724,18 +32785,13 @@ (define-public rust-tokio-macros-0.3
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1dvd3gji7a0i1kgck2lwgbcbklk3qb1bsqgd2v9amj63kyjzzps6"))))
|
(base32 "1dvd3gji7a0i1kgck2lwgbcbklk3qb1bsqgd2v9amj63kyjzzps6"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||||
("rust-quote" ,rust-quote-1)
|
("rust-quote" ,rust-quote-1)
|
||||||
("rust-syn" ,rust-syn-1))
|
("rust-syn" ,rust-syn-1))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-tokio" ,rust-tokio-0.3))))
|
(("rust-tokio" ,rust-tokio-0.3))))))
|
||||||
(home-page "https://tokio.rs")
|
|
||||||
(synopsis "Tokio's proc macros")
|
|
||||||
(description "This package provides Tokio's proc macros.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-tokio-macros-0.2
|
(define-public rust-tokio-macros-0.2
|
||||||
(package
|
(package
|
||||||
|
@ -33236,6 +33292,36 @@ (define-public rust-tokio-socks-0.2
|
||||||
("rust-once-cell" ,rust-once-cell-1)
|
("rust-once-cell" ,rust-once-cell-1)
|
||||||
("rust-tokio" ,rust-tokio-0.2))))))
|
("rust-tokio" ,rust-tokio-0.2))))))
|
||||||
|
|
||||||
|
(define-public rust-tokio-stream-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-tokio-stream")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tokio-stream" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0airchgn5zwzynchygdr8m7i4nizhfmifjz0iw6224sbnw9yjfrz"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #false ;FIXME: unresolved import
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-async-stream" ,rust-async-stream-0.3)
|
||||||
|
("rust-futures-core" ,rust-futures-core-0.3)
|
||||||
|
("rust-pin-project-lite" ,rust-pin-project-lite-0.2)
|
||||||
|
("rust-tokio" ,rust-tokio-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-futures" ,rust-futures-0.3)
|
||||||
|
("rust-proptest" ,rust-proptest-0.10)
|
||||||
|
("rust-tokio" ,rust-tokio-1))))
|
||||||
|
(home-page "https://tokio.rs")
|
||||||
|
(synopsis "Utilities to work with @code{Stream} and @code{tokio}")
|
||||||
|
(description
|
||||||
|
"This package provides utilities to work with @code{Stream} and
|
||||||
|
@code{tokio}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-tokio-sync-0.2
|
(define-public rust-tokio-sync-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-tokio-sync")
|
(name "rust-tokio-sync")
|
||||||
|
@ -33285,8 +33371,38 @@ (define-public rust-tokio-sync-0.1
|
||||||
("rust-tokio" ,rust-tokio-0.1)
|
("rust-tokio" ,rust-tokio-0.1)
|
||||||
("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))))
|
("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))))
|
||||||
|
|
||||||
|
(define-public rust-tokio-test-0.4
|
||||||
|
(package
|
||||||
|
(name "rust-tokio-test")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tokio-test" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1gwrqdwlfih6ib66wxc7yaaq7a9mlsmnxj2ahag3zc2rdxgj0zbw"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-async-stream" ,rust-async-stream-0.3)
|
||||||
|
("rust-bytes" ,rust-bytes-1)
|
||||||
|
("rust-futures-core" ,rust-futures-core-0.3)
|
||||||
|
("rust-tokio" ,rust-tokio-1)
|
||||||
|
("rust-tokio-stream" ,rust-tokio-stream-0.1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
|
("rust-tokio" ,rust-tokio-1))))
|
||||||
|
(home-page "https://tokio.rs")
|
||||||
|
(synopsis "Testing utilities for Tokio- and futures-based code")
|
||||||
|
(description
|
||||||
|
"This package provides testing utilities for Tokio- and
|
||||||
|
futures-based code.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-tokio-test-0.3
|
(define-public rust-tokio-test-0.3
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-tokio-test-0.4)
|
||||||
(name "rust-tokio-test")
|
(name "rust-tokio-test")
|
||||||
(version "0.3.0")
|
(version "0.3.0")
|
||||||
(source
|
(source
|
||||||
|
@ -33296,7 +33412,6 @@ (define-public rust-tokio-test-0.3
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "06nzdkjsxr16pbr5m80zm3vcr8dhcl9amjgb9l9vj4x72cmmmp3y"))))
|
(base32 "06nzdkjsxr16pbr5m80zm3vcr8dhcl9amjgb9l9vj4x72cmmmp3y"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-bytes" ,rust-bytes-0.5)
|
(("rust-bytes" ,rust-bytes-0.5)
|
||||||
|
@ -33304,13 +33419,7 @@ (define-public rust-tokio-test-0.3
|
||||||
("rust-tokio" ,rust-tokio-0.3))
|
("rust-tokio" ,rust-tokio-0.3))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-futures-util" ,rust-futures-util-0.3)
|
(("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
("rust-tokio" ,rust-tokio-0.3))))
|
("rust-tokio" ,rust-tokio-0.3))))))
|
||||||
(home-page "https://tokio.rs")
|
|
||||||
(synopsis "Testing utilities for Tokio- and futures-based code")
|
|
||||||
(description
|
|
||||||
"This package provides testing utilities for Tokio- and futures-based
|
|
||||||
code.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-tokio-test-0.2
|
(define-public rust-tokio-test-0.2
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue