1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 00:31:50 +01:00
actix-net/actix-rt/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

2018-12-09 19:55:40 -08:00
[package]
name = "actix-rt"
version = "2.10.0"
2024-12-29 14:27:56 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
2021-02-02 02:07:58 +00:00
description = "Tokio-based single-threaded async runtime for the Actix ecosystem"
2021-02-03 10:25:31 +00:00
keywords = ["async", "futures", "io", "runtime"]
2018-12-09 19:55:40 -08:00
homepage = "https://actix.rs"
2023-11-06 22:19:01 +00:00
repository = "https://github.com/actix/actix-net"
2018-12-09 19:55:40 -08:00
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
2023-07-17 03:05:39 +01:00
edition.workspace = true
rust-version.workspace = true
2018-12-09 19:55:40 -08:00
[package.metadata.cargo_check_external_types]
2024-12-29 14:27:56 +00:00
allowed_external_types = ["actix_macros::*", "tokio::*"]
2021-01-09 15:12:59 +00:00
[features]
default = ["macros"]
macros = ["actix-macros"]
io-uring = ["tokio-uring"]
2021-01-09 15:12:59 +00:00
2018-12-09 19:55:40 -08:00
[dependencies]
actix-macros = { version = "0.2.3", optional = true }
2021-01-29 02:21:06 +00:00
futures-core = { version = "0.3", default-features = false }
2023-04-01 22:24:10 +01:00
tokio = { version = "1.23.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
2021-01-26 09:46:14 +00:00
2022-03-08 23:42:52 +00:00
# runtime for `io-uring` feature
[target.'cfg(target_os = "linux")'.dependencies]
tokio-uring = { version = "0.5", optional = true }
2021-01-26 09:46:14 +00:00
[dev-dependencies]
2023-04-01 22:24:10 +01:00
tokio = { version = "1.23.1", features = ["full"] }
2024-12-29 14:27:56 +00:00
[lints]
workspace = true