Loading crates/s3s-aws/Cargo.toml +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ keywords = ["s3"] categories = ["web-programming", "web-programming::http-server"] [dependencies] aws-sdk-s3 = "0.23.0" aws-smithy-http = "0.53.1" aws-smithy-types = "0.53.1" futures = { version = "0.3.25", default-features = false, features = ["std"] } Loading crates/s3s-aws/src/lib.rs +3 −0 Original line number Diff line number Diff line Loading @@ -7,3 +7,6 @@ mod connector; pub use self::connector::Connector; mod proxy; pub use self::proxy::Proxy; crates/s3s-aws/src/proxy.rs 0 → 100644 +9 −0 Original line number Diff line number Diff line use aws_sdk_s3::Client; pub struct Proxy(Client); impl From<Client> for Proxy { fn from(val: Client) -> Self { Self(val) } } Loading
crates/s3s-aws/Cargo.toml +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ keywords = ["s3"] categories = ["web-programming", "web-programming::http-server"] [dependencies] aws-sdk-s3 = "0.23.0" aws-smithy-http = "0.53.1" aws-smithy-types = "0.53.1" futures = { version = "0.3.25", default-features = false, features = ["std"] } Loading
crates/s3s-aws/src/lib.rs +3 −0 Original line number Diff line number Diff line Loading @@ -7,3 +7,6 @@ mod connector; pub use self::connector::Connector; mod proxy; pub use self::proxy::Proxy;
crates/s3s-aws/src/proxy.rs 0 → 100644 +9 −0 Original line number Diff line number Diff line use aws_sdk_s3::Client; pub struct Proxy(Client); impl From<Client> for Proxy { fn from(val: Client) -> Self { Self(val) } }