Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/etesync/etebase-rs
A Rust client library for Etebase
https://github.com/etesync/etebase-rs
encryption end-to-end-encryption etebase etesync rust sync
Last synced: 5 days ago
JSON representation
A Rust client library for Etebase
- Host: GitHub
- URL: https://github.com/etesync/etebase-rs
- Owner: etesync
- License: bsd-3-clause
- Created: 2020-03-26T11:23:01.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-31T13:07:38.000Z (over 1 year ago)
- Last Synced: 2024-12-31T03:09:04.595Z (12 days ago)
- Topics: encryption, end-to-end-encryption, etebase, etesync, rust, sync
- Language: Rust
- Homepage: https://www.etebase.com
- Size: 448 KB
- Stars: 117
- Watchers: 8
- Forks: 11
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Etebase - Encrypt Everything
A Rust library for Etebase
In addition to exposing a Rust API, this library forms the basis of other Etebase libraries, for example libetebase.
![GitHub tag](https://img.shields.io/github/tag/etesync/etesync-rs.svg)
[![Build Status](https://github.com/etesync/etebase-rs/actions/workflows/build.yml/badge.svg)](https://github.com/etesync/etebase-rs/actions)
[![Crates.io](https://img.shields.io/crates/v/etebase)](https://crates.io/crates/etebase)
[![docs.rs](https://docs.rs/etebase/badge.svg)](https://docs.rs/etebase/)
[![Chat with us](https://img.shields.io/badge/chat-IRC%20|%20Matrix%20|%20Web-blue.svg)](https://www.etebase.com/community-chat/)# Documentation
In addition to the API documentation, there are docs available at https://docs.etebase.com
# Minimum supported Rust version (MSRV)
The current MSRV is 1.63.0. Changes to the MSRV are not considered breaking and may occur in any patch release, it is however guaranteed that
at least the previous Rust version will always be supported. This results in a three-month grace period from when a new Rust verion is released
until it may become required.# Build
To build:
```
$ cargo build
```To test, run the `etesync/test-server` image using the latest version, e.g.,
```
docker run -p 3735:3735 -d etesync/test-server:latest
```and then set `ETEBASE_TEST_HOST` to the host:port on which that is running; for the docker invocation above, that's
```
export ETEBASE_TEST_HOST=localhost:3735
```and then run the tests:
```
$ cargo test -- --test-threads 1
```Please note that the tests run against the local server so we need to run them single threaded to make sure they don't clash.