-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (48 loc) · 1.13 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
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "corundum"
version = "0.4.1"
authors = ["Morteza Hoseinzadeh <mhoseinzadeh@cs.ucsd.edu>", "Steven Swanson <swanson@cs.ucsd.edu>"]
edition = "2018"
license = "MIT"
description = "Persistent Programming Library"
documentation = "https://nvsl.github.io/Corundum/"
repository = "https://github.com/NVSL/Corundum"
readme = "README.md"
keywords = ["pmem", "persistent", "memory", "pmdk"]
categories = ["development-tools", "memory-management", "hardware-support"]
[features]
verbose = []
stat_footprint = []
stat_perf = []
stat_log = []
stat_print_flushes = []
check_access_violation = []
check_allocator_cyclic_links = []
check_double_free = []
pin_journals = []
replace_with_log = []
use_clflushopt = []
use_clwb = []
use_ntstore = []
use_msync = []
use_pspd = []
use_vspd = []
no_persist = []
no_log_rc = []
no_flush_alloc = []
no_flush_updates = []
no_dyn_borrow_checking = []
no_pthread = []
cbindings = []
default = ["cbindings"]
[dependencies]
memmap = "0.7.0"
term-painter = "0.3.0"
libc = "0.2.82"
impl-trait-for-tuples = "0.2.0"
crndm_derive = "0.1.1"
num_cpus = "1.13.0"
# examples
rand = "0.8.4"
regex = "1.5.4"
num = "0.4.0"