forked from ProvableHQ/aleo-std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 1.16 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
[package]
name = "aleo-std"
version = "0.1.18"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "A standard library for Aleo repositories"
exclude = ["**/*.md"]
license = "GPL-3.0"
edition = "2018"
[workspace]
members = [ "cpu", "profiler", "storage", "time", "timed", "timer" ]
[dependencies]
aleo-std-cpu = { path = "./cpu", version = "0.1.4", default-features = false, optional = true }
aleo-std-profiler = { path = "./profiler", version = "0.1.15", default-features = false }
aleo-std-storage = { path = "./storage", version = "0.1.3", default-features = false, optional = true }
aleo-std-time = { path = "./time", version = "0.1.2", default-features = false }
aleo-std-timed = { path = "./timed", version = "0.1.2", default-features = false }
aleo-std-timer = { path = "./timer", version = "0.1.2", default-features = false }
[dev-dependencies.rusty-hook]
version = "0.11.2"
[features]
default = []
# Supported feature modes
wasm = []
# aleo-std feature configuration
cpu = ["aleo-std-cpu"]
profiler = ["aleo-std-profiler/profiler"]
storage = ["aleo-std-storage"]
time = ["aleo-std-time/time"]
timed = ["aleo-std-timed/timed"]
timer = ["aleo-std-timer/timer"]