Skip to content

Commit

Permalink
chore: add tests path to make publish workflow work (#2556)
Browse files Browse the repository at this point in the history
Signed-off-by: Chojan Shang <[email protected]>
  • Loading branch information
PsiACE authored Jun 27, 2023
1 parent 06b2004 commit 050c044
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ services-oss = [
"reqsign?/services-aliyun",
"reqsign?/reqwest_request",
]
services-redb = ["dep:redb"]
services-redis = ["dep:redis"]
services-rocksdb = ["dep:rocksdb"]
services-s3 = [
Expand All @@ -159,7 +160,6 @@ services-wasabi = [
]
services-webdav = []
services-webhdfs = []
services-redb = ["dep:redb"]

[lib]
bench = false
Expand All @@ -171,6 +171,7 @@ name = "ops"
[[test]]
harness = false
name = "behavior"
path = "tests/behavior/main.rs"

[dependencies]
anyhow = { version = "1.0.30", features = ["std"] }
Expand All @@ -181,7 +182,10 @@ backon = "0.4.0"
base64 = "0.21"
bb8 = { version = "0.8", optional = true }
bytes = "1.2"
cacache = { version = "11.6", default-features = false, features = ["tokio-runtime", "mmap"], optional = true }
cacache = { version = "11.6", default-features = false, features = [
"tokio-runtime",
"mmap",
], optional = true }
chrono = "0.4.24"
dashmap = { version = "5.4", optional = true }
dirs = { version = "5.0.1", optional = true }
Expand All @@ -196,8 +200,8 @@ log = "0.4"
madsim = { version = "0.2.21", optional = true }
md-5 = "0.10"
metrics = { version = "0.20", optional = true }
minitrace = { version = "0.4.0", optional = true }
mini-moka = { version = "0.10", optional = true }
minitrace = { version = "0.4.0", optional = true }
moka = { version = "0.10", optional = true, features = ["future"] }
once_cell = "1"
openssh = { version = "0.9.9", optional = true }
Expand All @@ -213,6 +217,7 @@ prometheus = { version = "0.13", features = ["process"], optional = true }
prost = { version = "0.11", optional = true }
quick-xml = { version = "0.27", features = ["serialize", "overlapped-lists"] }
rand = { version = "0.8", optional = true }
redb = { version = "1.0.0", optional = true }
redis = { version = "0.22", features = [
"tokio-comp",
"connection-manager",
Expand All @@ -226,7 +231,6 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = { version = "0.10", optional = true }
sled = { version = "0.34.7", optional = true }
redb = { version = "1.0.0", optional = true }
suppaftp = { version = "4.5", default-features = false, features = [
"async-secure",
"async-rustls",
Expand Down

0 comments on commit 050c044

Please sign in to comment.