1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-01-01 21:08:43 +00:00
actix-web/Cargo.toml

25 lines
701 B
TOML
Raw Normal View History

2018-08-19 17:47:04 +00:00
[package]
name = "actix-net"
2018-11-30 02:56:15 +00:00
version = "0.3.0"
2018-08-19 17:47:04 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-10-09 04:46:57 +00:00
description = "Actix net - framework for the compisible network services for Rust (experimental)"
2018-08-19 17:47:04 +00:00
readme = "README.md"
2018-08-22 04:11:16 +00:00
keywords = ["network", "framework", "async", "futures"]
2018-08-19 17:47:04 +00:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
2018-10-09 05:02:38 +00:00
documentation = "https://docs.rs/actix-net/"
2018-08-22 04:11:16 +00:00
categories = ["network-programming", "asynchronous"]
2018-08-19 17:47:04 +00:00
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
2018-12-06 22:04:42 +00:00
edition = "2018"
2018-08-19 17:47:04 +00:00
2018-12-09 17:56:23 +00:00
[workspace]
members = [
2018-12-09 23:19:25 +00:00
"actix-codec",
2018-12-10 16:42:31 +00:00
"actix-connector",
2018-12-09 17:56:23 +00:00
"actix-service",
2018-12-10 06:14:29 +00:00
"actix-server",
2018-12-10 03:55:40 +00:00
"actix-rt",
"actix-utils",
2018-12-09 17:56:23 +00:00
]