Skip to content

Commit

Permalink
switch to external crate
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Nov 20, 2024
1 parent f3cb1e0 commit 44f78fe
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 188 deletions.
27 changes: 19 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ indicatif = "0.17.8"
itertools = "0.13.0"
jiff = "0.1.8"
libfuzzer-sys = "0.4"
local_s3 = "0.1"
log = "0.4.21"
mimalloc = "0.1.42"
monoio = "0.2.3"
Expand Down
9 changes: 1 addition & 8 deletions cyper-object-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,8 @@ url = { workspace = true }
vortex-error = { workspace = true }

[dev-dependencies]
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-credential-types = { version = "1", features = ["hardcoded-credentials"] }
aws-sdk-s3 = "1"
hyper = "1"
hyper-util = { version = "0.1", features = ["tokio", "server"] }
s3s = "0.10"
s3s-fs = "0.10"
tempfile = { workspace = true }
tokio = { workspace = true, features = ["full"] }
local_s3 = { workspace = true }


[lints]
Expand Down
5 changes: 1 addition & 4 deletions cyper-object-store/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ use std::sync::Arc;

use bytes::Bytes;
use cyper_object_store::{CyperS3, S3Config};
use local_s3::LocalS3;
use object_store::aws::AwsCredential;
use object_store::path::Path;
use object_store::{ObjectStore, StaticCredentialProvider};

use crate::local_s3::LocalS3;

mod local_s3;

const BUCKET: &str = "test-bucket";
const KEY_ID: &str = "key1";
const SECRET_KEY: &str = "secret1";
Expand Down
168 changes: 0 additions & 168 deletions cyper-object-store/tests/local_s3/mod.rs

This file was deleted.

0 comments on commit 44f78fe

Please sign in to comment.