Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Reexport crates with types that are used publicly #118

Merged
merged 1 commit into from
Oct 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions aws_lambda_events/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
#[macro_use]
extern crate serde_derive;
extern crate base64;
extern crate bytes;
extern crate chrono;
extern crate http_serde;
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[cfg(test)]
#[macro_use]
extern crate serde_json;
extern crate http;
extern crate http_body;
extern crate http_serde;
extern crate query_map;

// Crates with types that we use publicly. Reexported for ease of interoperability.
pub extern crate bytes;
pub extern crate chrono;
pub extern crate http;
pub extern crate http_body;
pub extern crate query_map;
pub extern crate serde;
#[cfg(not(test))]
extern crate serde_json;
pub extern crate serde_json;

/// AWS Lambda event definitions for alb.
#[cfg(feature = "alb")]
Expand Down