59 unstable releases

0.37.0 Feb 1, 2024
0.36.1 Dec 6, 2023
0.36.0 Nov 6, 2023
0.34.5 Jun 27, 2023
0.17.0 Nov 22, 2020

#223 in Web programming

Download history 2639/week @ 2023-12-14 3190/week @ 2023-12-21 2559/week @ 2023-12-28 3583/week @ 2024-01-04 2464/week @ 2024-01-11 2489/week @ 2024-01-18 2621/week @ 2024-01-25 2358/week @ 2024-02-01 326/week @ 2024-02-08 1536/week @ 2024-02-15 854/week @ 2024-02-22 523/week @ 2024-02-29 484/week @ 2024-03-07 571/week @ 2024-03-14 360/week @ 2024-03-21 263/week @ 2024-03-28

1,754 downloads per month
Used in 3 crates

MIT and maybe GPL-3.0+

400KB
8K SLoC

atomic-lib

crates.io Released API docs Discord chat MIT licensed github

Status: Beta. Breaking changes are expected until 1.0.

Rust library for using Atomic Data. Powers atomic-cli and atomic-server.

Check out the docs on docs.rs. For code examples, see examples/basic.rs and the many tests in the code.

Features

  • Two stores for Atomic Data:
    • In-memory store for getting / setting data (Store). Useful for clients.
    • On disk database (Db, uses Sled), which powers atomic-server.
  • JSON-AD Parser & Serializer
  • Serialization of atomic data to JSON-AD, plain JSON, RDF, Turtle, N-Triples and JSON-LD.
  • Path traversal
  • Convert Atomic Data to Rust native types
  • Resolve / parse mappings (bookmarks)
  • Validate Atomic Schema
  • Atomic Commits (transactions / delta's / changes / updates / versioning / history)
  • Plugin system (although not very mature)
  • Collections (pagination, sorting, filtering)
  • Querying (using triple pattern fragments)
  • Invites
  • Hierarchy
  • Saving Atomic Config files.

Optional features

Some features of this library are optional, to minimize bundle size and compile times.

db

The db features adds persistence, which means that you can store stuff on an HDD / SSD. It uses [Sled], a performant, embedded key-value store.

rdf

If you need RDF serialization options (Turtle / N-Triples), use this feature.

config

Filesystem management of Atomic Config files. Used in atomic-cli and atomic-server.

Dependencies

~11–24MB
~457K SLoC