/ timed / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "adnet-core-timed"
 3  version = "0.1.0"
 4  authors = [ "ADnet Contributors" ]
 5  description = "A profiler to conveniently time function executions"
 6  license = "Apache-2.0"
 7  edition = "2021"
 8  repository = "https://github.com/BlockBlox-MD/adnet-core"
 9  
10  [lib]
11  proc-macro = true
12  
13  [dependencies]
14  proc-macro2 = { version = "1" }
15  quote = { version = "1" }
16  syn = { version = "1", features = ["full", "extra-traits"] }
17  
18  [features]
19  default = []
20  timed = []