Skip to content

Commit

Permalink
Rename "s3-file-connector" to "mountpoint-s3" (awslabs#125)
Browse files Browse the repository at this point in the history
* Rename packages

Signed-off-by: Monthon Klongklaew <monthonk@amazon.co.uk>

* Update naming in documents

Signed-off-by: Monthon Klongklaew <monthonk@amazon.co.uk>

* Update log prefixes and log file name

Signed-off-by: Monthon Klongklaew <monthonk@amazon.co.uk>

* Fix error from the rebase

Signed-off-by: Monthon Klongklaew <monthonk@amazon.co.uk>

---------

Signed-off-by: Monthon Klongklaew <monthonk@amazon.co.uk>
  • Loading branch information
monthonk authored Mar 8, 2023
1 parent 0ca2c77 commit 4f1c6ed
Show file tree
Hide file tree
Showing 130 changed files with 322 additions and 316 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ body:
attributes:
value: |
**Note: security issues should not be reported here.**
Please follow the [security policy for this repository](https://github.com/awslabs/s3-file-connector/security/policy).
Please follow the [security policy for this repository](https://github.com/awslabs/mountpoint-s3/security/policy).
- type: input
id: project-version
attributes:
label: S3 File Connector version
label: Mountpoint for Amazon S3 version
description: |
Which version of the file connector are you using? You can find out using `--version` argument.
Which version of the mountpoint are you using? You can find out using `mount-s3 --version`.
If you're building from source or a fork, please state that.
placeholder: s3-file-connector x.y.z
placeholder: mountpoint-s3 x.y.z
validations:
required: true
- type: input
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Build
run: cargo build --release
- name: Run Benchmark
run: s3-file-connector/scripts/fs_bench.sh
run: mountpoint-s3/scripts/fs_bench.sh
- name: Store benchmark result
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
uses: benchmark-action/github-action-benchmark@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Install fuse
run: sudo apt-get install fuse libfuse-dev
- name: Run Shuttle tests
run: cargo test -p s3-file-connector --features shuttle -- shuttle
run: cargo test -p mountpoint-s3 --features shuttle -- shuttle

asan:
name: Address sanitizer
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
target/
key: ${{ runner.os }}-${{ github.job }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build CRT binding documentation
run: cargo doc --no-deps -p aws-crt-s3
run: cargo doc --no-deps -p mountpoint-s3-crt

deny:
name: Licenses
Expand Down
22 changes: 11 additions & 11 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
[submodule "aws-lc"]
path = aws-crt-s3-sys/crt/aws-lc
path = mountpoint-s3-crt-sys/crt/aws-lc
url = https://github.com/awslabs/aws-lc.git
[submodule "s2n-tls"]
path = aws-crt-s3-sys/crt/s2n-tls
path = mountpoint-s3-crt-sys/crt/s2n-tls
url = https://github.com/aws/s2n-tls.git
[submodule "aws-c-common"]
path = aws-crt-s3-sys/crt/aws-c-common
path = mountpoint-s3-crt-sys/crt/aws-c-common
url = https://github.com/awslabs/aws-c-common.git
[submodule "aws-c-compression"]
path = aws-crt-s3-sys/crt/aws-c-compression
path = mountpoint-s3-crt-sys/crt/aws-c-compression
url = https://github.com/awslabs/aws-c-compression.git
[submodule "aws-checksums"]
path = aws-crt-s3-sys/crt/aws-checksums
path = mountpoint-s3-crt-sys/crt/aws-checksums
url = https://github.com/awslabs/aws-checksums.git
[submodule "aws-c-cal"]
path = aws-crt-s3-sys/crt/aws-c-cal
path = mountpoint-s3-crt-sys/crt/aws-c-cal
url = https://github.com/awslabs/aws-c-cal.git
[submodule "aws-c-io"]
path = aws-crt-s3-sys/crt/aws-c-io
path = mountpoint-s3-crt-sys/crt/aws-c-io
url = https://github.com/awslabs/aws-c-io.git
[submodule "aws-c-http"]
path = aws-crt-s3-sys/crt/aws-c-http
path = mountpoint-s3-crt-sys/crt/aws-c-http
url = https://github.com/awslabs/aws-c-http.git
[submodule "aws-c-sdkutils"]
path = aws-crt-s3-sys/crt/aws-c-sdkutils
path = mountpoint-s3-crt-sys/crt/aws-c-sdkutils
url = https://github.com/awslabs/aws-c-sdkutils.git
[submodule "aws-c-auth"]
path = aws-crt-s3-sys/crt/aws-c-auth
path = mountpoint-s3-crt-sys/crt/aws-c-auth
url = https://github.com/awslabs/aws-c-auth.git
[submodule "aws-c-s3"]
path = aws-crt-s3-sys/crt/aws-c-s3
path = mountpoint-s3-crt-sys/crt/aws-c-s3
url = https://github.com/awslabs/aws-c-s3.git
224 changes: 112 additions & 112 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[workspace]
members = [
"aws-crt-s3",
"aws-crt-s3-sys",
"s3-client",
"s3-file-connector",
"mountpoint-s3-crt",
"mountpoint-s3-crt-sys",
"mountpoint-s3-client",
"mountpoint-s3",
"vendor/fuser",
]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# fuser crate. If those tools ever get stabilized `ignore` features, or we stop vendoring, this can
# go away.

CRATES = aws-crt-s3-sys aws-crt-s3 s3-client s3-file-connector
CRATES = mountpoint-s3-crt-sys mountpoint-s3-crt mountpoint-s3-client mountpoint-s3
RUST_FEATURES ?= fuse_tests

.PHONY: all
Expand Down
Loading

0 comments on commit 4f1c6ed

Please sign in to comment.