diff --git a/common/s2n-codec/Cargo.toml b/common/s2n-codec/Cargo.toml index 5eb0086962..25d3652f94 100644 --- a/common/s2n-codec/Cargo.toml +++ b/common/s2n-codec/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-core/Cargo.toml b/quic/s2n-quic-core/Cargo.toml index 7f997e6aeb..d43a36445d 100644 --- a/quic/s2n-quic-core/Cargo.toml +++ b/quic/s2n-quic-core/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-platform/Cargo.toml b/quic/s2n-quic-platform/Cargo.toml index 9eab21b56d..b2fc1def2f 100644 --- a/quic/s2n-quic-platform/Cargo.toml +++ b/quic/s2n-quic-platform/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-ring/Cargo.toml b/quic/s2n-quic-ring/Cargo.toml index 70f46259cf..e78e8adb29 100644 --- a/quic/s2n-quic-ring/Cargo.toml +++ b/quic/s2n-quic-ring/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-rustls/Cargo.toml b/quic/s2n-quic-rustls/Cargo.toml index ee96225741..65d959db10 100644 --- a/quic/s2n-quic-rustls/Cargo.toml +++ b/quic/s2n-quic-rustls/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-tls-default/Cargo.toml b/quic/s2n-quic-tls-default/Cargo.toml index 5ab6e4d433..56c3e79c71 100644 --- a/quic/s2n-quic-tls-default/Cargo.toml +++ b/quic/s2n-quic-tls-default/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-tls/Cargo.toml b/quic/s2n-quic-tls/Cargo.toml index 378297d36b..3366fedff2 100644 --- a/quic/s2n-quic-tls/Cargo.toml +++ b/quic/s2n-quic-tls/Cargo.toml @@ -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" diff --git a/quic/s2n-quic-transport/Cargo.toml b/quic/s2n-quic-transport/Cargo.toml index cdd5e65448..bc6a95ef5f 100644 --- a/quic/s2n-quic-transport/Cargo.toml +++ b/quic/s2n-quic-transport/Cargo.toml @@ -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" @@ -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 } diff --git a/quic/s2n-quic/Cargo.toml b/quic/s2n-quic/Cargo.toml index 9d9726a205..f8564ca358 100644 --- a/quic/s2n-quic/Cargo.toml +++ b/quic/s2n-quic/Cargo.toml @@ -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"