Skip to content

Commit c942fae

Browse files
committed
edited README & Cargo.toml
1 parent b3a77c3 commit c942fae

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
[package]
22
name = "object-space"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["tmt <[email protected]>"]
55
license = "Apache-2.0/MIT"
66
repository = "https://github.com/tmt96/rs-object-space"
77
description = """
8-
This crate is an implementation of ObjectSpace - a natural progression on the idea of TupleSpace (https://en.wikipedia.org/wiki/Tuple_space) proposed by Gelernter in 1985. ObjectSpace is a data structure with the capability of holding any structure (e.g: a string, an int, and a complex struct could all lives under one ObjectSpace). It also allows retrieving a struct based on the value of a field.
9-
10-
This crate also provides a fully thread-safe implementation of ObjectSpace, which allows simple concurrent and distributed programming.
8+
An object store library for highly concurrent program written in Rust.
119
"""
1210
exclude = [
1311
"paper/*.pdf"

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# rObjectSpace
1+
# rs-object-space
22

3-
An object store library for highly concurrent program written in Rust.
3+
This crate is an implementation of ObjectSpace - a natural progression on the idea of [TupleSpace](https://en.wikipedia.org/wiki/Tuple_space) proposed by Gelernter in 1985. ObjectSpace is a data structure with the capability of holding any structure (e.g: a string, an int, and a complex struct could all lives under one ObjectSpace). It also allows retrieving a struct based on the value of a field.
44

5-
To get documentation, run `cargo doc --open --no-deps`.
5+
This crate also provides a fully thread-safe implementation of ObjectSpace, which allows simple concurrent and distributed programming.
6+
7+
The crate requires Rust nightly for build and usage.
68

79
## Building
810

0 commit comments

Comments
 (0)