Skip to content
Snippets Groups Projects
Cargo.toml 1.15 KiB
Newer Older
  • Learn to ignore specific revisions
  • [package]
    name = "orml-benchmarking"
    
    description = "Provide macro to benchmark Substrate runtime."
    repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking"
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    license = "Apache-2.0"
    
    version = "0.1.3-dev"
    
    authors = ["Laminar Developers <hello@laminar.one>"]
    edition = "2018"
    
    [dependencies]
    
    David Craven's avatar
    David Craven committed
    paste = "0.1.16"
    
    codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
    
    sp-api = { version = "2.0.0-rc6", default-features = false }
    sp-runtime-interface = { version = "2.0.0-rc6", default-features = false }
    sp-runtime = { version = "2.0.0-rc6", default-features = false }
    sp-std = { version = "2.0.0-rc6", default-features = false }
    sp-io = { version = "2.0.0-rc6", default-features = false }
    frame-support = { version = "2.0.0-rc6", default-features = false }
    frame-system = { version = "2.0.0-rc6", default-features = false }
    frame-benchmarking = { version = "2.0.0-rc6", default-features = false }
    
    
    [features]
    default = [ "std" ]
    std = [
    	"codec/std",
    	"sp-runtime-interface/std",
    	"sp-runtime/std",
    	"sp-api/std",
    	"sp-std/std",
    	"frame-support/std",
    	"frame-system/std",
    	"frame-benchmarking/std",
    ]