Skip to content
Snippets Groups Projects
Cargo.toml 1.41 KiB
Newer Older
  • Learn to ignore specific revisions
  • Bryan Chen's avatar
    Bryan Chen committed
    [package]
    name = "orml-oracle"
    version = "0.0.1"
    authors = ["Laminar Developers <hello@laminar.one>"]
    edition = "2018"
    
    [dependencies]
    serde = { version = "1.0", optional = true }
    codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    sp-runtime = { git = "https://github.com/paritytech/substrate.git", default-features = false }
    runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate.git", default-features = false }
    rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate.git", default-features = false }
    
    Ermal Kaleci's avatar
    Ermal Kaleci committed
    
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    frame-support = { git = "https://github.com/paritytech/substrate.git", default-features = false }
    frame-system = { git = "https://github.com/paritytech/substrate.git", default-features = false }
    
    
    orml-traits = { path = "../traits", default-features = false }
    orml-utilities = { path = "../utilities", default-features = false }
    
    Ermal Kaleci's avatar
    Ermal Kaleci committed
    
    
    [dev-dependencies]
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    primitives = { git = "https://github.com/paritytech/substrate.git", package = "sp-core", default-features = false }
    
    pallet-timestamp = { git = "https://github.com/paritytech/substrate.git" }
    
    
    clear_on_drop = { version = "0.2.3", features = ["no_cc"] }	# https://github.com/paritytech/substrate/issues/4179
    
    Bryan Chen's avatar
    Bryan Chen committed
    
    [features]
    default = ["std"]
    std = [
    	"serde",
    	"codec/std",
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    	"sp-runtime/std",
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    	"runtime-io/std",
    
    Bryan Chen's avatar
    Bryan Chen committed
    	"rstd/std",
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    	"frame-support/std",
    	"frame-system/std",
    
    	"orml-traits/std",
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    	"orml-utilities/std",
    
    Bryan Chen's avatar
    Bryan Chen committed
    ]