/ time / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "adnet-core-time"
 3  version = "0.1.0"
 4  authors = [ "ADnet Contributors" ]
 5  description = "A convenience attribute to time functions"
 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  quote = "1"
15  proc-macro2 = "1"
16  
17  [dependencies.syn]
18  version = "1"
19  features = ["full"]
20  
21  [features]
22  default = []
23  time = []