forked from alex-shapiro/ditto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 902 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "ditto"
version = "0.2.1"
authors = ["Alex Shapiro <[email protected]>"]
license = "MIT/Apache-2.0"
description = "CRDTs for common data structures like maps, sets, vecs, strings, and JSON"
repository = "https://github.com/alex-shapiro/ditto"
documentation = "https://docs.rs/ditto"
readme = "README.md"
keywords = ["crdt", "ot", "conflict-free", "concurrent", "distributed"]
categories = ["data-structures"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
[badges]
travis-ci = { repository = "alex-shapiro/ditto" }
[dev-dependencies]
assert_matches = "1.1"
rmp-serde = "0.13"
[dependencies]
base64 = "0.9"
clippy = { version = "~0.0.187", optional = true }
lazy_static = "1.0"
num-bigint = "0.2"
num-traits = "0.2"
rand = { version = "0.5" , features = ["stdweb"]}
serde = "1"
serde_derive = "1"
serde_json = "1"
failure = "*"