Skip to content

Commit

Permalink
docs: add description and repository to Cargo.toml (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft authored Feb 17, 2022
1 parent 3887c50 commit a19457f
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions common/s2n-codec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-codec"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-core"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic-platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-platform"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic-ring/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-ring"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic-rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-rustls"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic-tls-default/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-tls-default"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-tls"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down
4 changes: 3 additions & 1 deletion quic/s2n-quic-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic-transport"
version = "0.1.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -16,7 +18,7 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"]
hashbrown = "0.11"
intrusive-collections = "0.9"
s2n-codec = { version = "0.1", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "0.1", path = "../s2n-quic-core", default-features = false }
s2n-quic-core = { version = "0.1", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "0.3"
smallvec = { version = "1", default-features = false }

Expand Down
2 changes: 2 additions & 0 deletions quic/s2n-quic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "s2n-quic"
version = "1.0.0"
description = "A Rust implementation of the IETF QUIC protocol"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2018"
license = "Apache-2.0"
Expand Down

0 comments on commit a19457f

Please sign in to comment.