-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 1.24 KB
/
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
32
33
34
35
36
37
38
39
[package]
name = "otto-test"
version = "0.1.0"
license = "MIT OR Apache-2.0"
authors = ["The Tably Team <[email protected]>"]
categories = []
keywords = ["crdt","crdts","ot"]
description = """
Otto: a unified approach to CRDTs and OT
"""
repository = "https://github.com/tablyinc/otto-test"
homepage = "https://github.com/tablyinc/otto-test"
documentation = "https://docs.rs/otto-test"
readme = "README.md"
edition = "2021"
[dev-dependencies]
cap = "0.1.0"
# this revision is the tip of master (as of this writing) in Seph's repo
crdt-testdata = { git = "https://github.com/josephg/diamond-types/", rev = "316032a3b9fb7211704ee60f67cdde8824d24150" }
criterion = "0.4.0"
# this revision is our forked patch on top of the tip of master (as of this writing) from Seph's repo
diamond-types = { git = "https://github.com/tably-team/diamond-types/", rev = "7d9a9ac8c11d3eb0454ba9065e5c115952e856e8" }
hashbag = "0.1.9"
index_many = "0.6"
[dependencies]
otto = { path = "../otto", version = "0.0.0" }
borsh = { path = "../otto/borsh", version = "0.0.0" }
all_asserts = "2"
itertools = "0.10"
jemallocator = "0.5"
rand = { version = "0.8", default-features = false, features = ["small_rng", "std", "std_rng"] }
random-branch = "0.1"
[[bench]]
name = "bench"
harness = false