/ time / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "alphastd-time"
 3  version = "0.2.0"
 4  authors = [ "Alpha-Delta Network <dev@ac-dc.network>" ]
 5  description = "A convenience attribute to time functions"
 6  license = "Apache-2.0"
 7  edition = "2021"
 8  
 9  [lib]
10  proc-macro = true
11  
12  [dependencies]
13  quote = "1"
14  proc-macro2 = "1"
15  
16  [dependencies.syn]
17  version = "1"
18  features = ["full"]
19  
20  [features]
21  default = []
22  time = []