Skip to content

Commit

Permalink
add badges and remove MIT license
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed Apr 20, 2024
1 parent 219d0c2 commit 267f0f8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "encrypted_fs"
description = "An encrypted file system that mounts with FUSE on Linux. It can be used to create encrypted directories."
version = "0.1.20"
edition = "2021"
license = "MIT OR Apache-2.0"
license = "Apache-2.0"
authors = ["Radu Marias"]
repository = "https://github.com/radumarias/encrypted_fs"
readme = "README.md"
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,27 @@ An encrypted file system that mounts with FUSE on Linux. It can be used to creat
It can then safely backup the encrypted folder on an untrusted server without worrying about the data being exposed.\
You can also store it in any clound storage like Google Drive, Dropbox, etc. and have it synced across multiple devices.

Crate [encrypted_fs](https://crates.io/crates/encrypted_fs) on crates.io.
\
[![encrypted_fs-bin](https://img.shields.io/aur/version/encrypted_fs-bin?color=1793d1&label=encrypted_fs-bin&logo=arch-linux)](https://aur.archlinux.org/packages/encrypted_fs-bin/)
![crates.io](https://img.shields.io/crates/v/encrypted_fs.svg)
![docs.rs](https://img.shields.io/docsrs/encrypted_fs?label=docs.rs)
![license](https://github.com/hyperium/tonic/blob/HEAD/LICENSE)

# Usage

You can use it as a command line tool to mount an encrypted file system. or directly using the library to build your own binary (for library, you can follow the [documentation](https://docs.rs/encrypted_fs/latest/encrypted_fs/)).

## Command Line Tool

## Installation
### Install from AUR

You can install the encrypted file system binary using the following command:
```bash
yay -Syu
yay -S encrypted_fs
```

### Install with cargo

You can install the encrypted file system binary using the following command:
```bash
Expand Down

0 comments on commit 267f0f8

Please sign in to comment.