-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
authors = ["Christian Visintin <[email protected]>"]
categories = ["network-programming"]
description = "remotefs Aws S3 client library"
documentation = "https://docs.rs/remotefs-aws-s3"
edition = "2024"
homepage = "https://veeso.github.io/remotefs-rs-aws-s3/"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["remotefs", "s3-client"]
license = "MIT"
name = "remotefs-aws-s3"
readme = "README.md"
repository = "https://github.com/veeso/remotefs-rs-aws-s3"
rust-version = "1.85.0"
version = "0.4.1"
[dependencies]
aws-config = "1"
aws-credential-types = "1"
aws-sdk-s3 = "1"
log = "^0.4"
remotefs = "^0.3"
thiserror = "2"
tokio = { version = "1", features = ["fs", "rt"] }
[dev-dependencies]
env_logger = "^0.11"
pretty_assertions = "^1"
rand = "^0.9"
tempfile = "^3"
testcontainers = { version = "0.23", features = ["blocking"] }
[features]
default = ["find"]
# misc
find = ["remotefs/find"]
no-log = ["log/max_level_off"]
# tests
github-actions = []
with-s3-ci = []
with-containers = []
[target."cfg(target_os = \"windows\")"]
[target."cfg(target_os = \"windows\")".dependencies]
path-slash = "^0.2"