/ std / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "adnet-core-std"
 3  version = "0.1.0"
 4  authors = [ "ADnet Contributors" ]
 5  description = "Standard library for ADnet repositories"
 6  license = "Apache-2.0"
 7  edition = "2021"
 8  repository = "https://github.com/BlockBlox-MD/adnet-core"
 9  
10  [dependencies]
11  adnet-core-cpu = { path = "../cpu", version = "0.1.0", default-features = false, optional = true }
12  adnet-core-profiler = { path = "../profiler", version = "0.1.0", default-features = false }
13  adnet-core-storage = { path = "../storage", version = "0.1.0", default-features = false, optional = true }
14  adnet-core-time = { path = "../time", version = "0.1.0", default-features = false }
15  adnet-core-timed = { path = "../timed", version = "0.1.0", default-features = false }
16  adnet-core-timer = { path = "../timer", version = "0.1.0", default-features = false }
17  
18  [features]
19  default = []
20  
21  # Supported feature modes
22  wasm = []
23  
24  # Feature configuration
25  cpu = ["adnet-core-cpu"]
26  profiler = ["adnet-core-profiler/profiler"]
27  storage = ["adnet-core-storage"]
28  time = ["adnet-core-time/time"]
29  timed = ["adnet-core-timed/timed"]
30  timer = ["adnet-core-timer/timer"]