Skip to content

Commit a33f616

Browse files
committed
update Cargo.toml
1 parent 17fdd77 commit a33f616

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

async-stream-impl/Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
[package]
22
name = "async-stream-impl"
33
version = "0.1.0"
4-
authors = ["Carl Lerche <[email protected]>"]
54
edition = "2018"
5+
license = "MIT"
6+
authors = ["Carl Lerche <[email protected]>"]
7+
description = "proc macros for async-stream crate"
8+
documentation = "https://docs.rs/async-stream-impl/0.1.0/loom"
9+
homepage = "https://github.com/tokio-rs/async-stream"
10+
repository = "https://github.com/tokio-rs/async-stream"
611

712
[lib]
813
proc-macro = true
914

10-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11-
1215
[dependencies]
1316
proc-macro2 = "1"
1417
syn = { version = "1", features = ["extra-traits", "full", "visit-mut"]}

async-stream/Cargo.toml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
[package]
22
name = "async-stream"
3+
# When releasing to crates.io:
4+
# - Update version number
5+
# - lib.rs: html_root_url.
6+
# - README.md
7+
# - Update CHANGELOG.md
8+
# - Update doc URL.
9+
# - Cargo.toml
10+
# - README.md
11+
# - Create git tag
312
version = "0.1.0"
4-
authors = ["Carl Lerche <[email protected]>"]
513
edition = "2018"
14+
license = "MIT"
15+
authors = ["Carl Lerche <[email protected]>"]
16+
description = "Asynchronous streams using async & await notation"
17+
documentation = "https://docs.rs/async-stream/0.1.0/loom"
18+
homepage = "https://github.com/tokio-rs/async-stream"
19+
repository = "https://github.com/tokio-rs/async-stream"
20+
readme = "README.md"
621

722
[dependencies]
823
async-stream-impl = { path = "../async-stream-impl" }

0 commit comments

Comments
 (0)