1[package]2name = "flipper"3version = "3.0.0-rc1"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2021"67[dependencies]8ink_primitives = { version = "3.0.0-rc1", git = "https://github.com/paritytech/ink", tag = "v3.0.0-rc1", default-features = false }9ink_metadata = { version = "3.0.0-rc1", git = "https://github.com/paritytech/ink", tag = "v3.0.0-rc1", default-features = false, features = ["derive"], optional = true }10ink_env = { version = "3.0.0-rc1", git = "https://github.com/paritytech/ink", tag = "v3.0.0-rc1", default-features = false }11ink_storage = { version = "3.0.0-rc1", git = "https://github.com/paritytech/ink", tag = "v3.0.0-rc1", default-features = false }12ink_lang = { version = "3.0.0-rc1", git = "https://github.com/paritytech/ink", tag = "v3.0.0-rc1", default-features = false }1314scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }15scale-info = { version = "0.4", default-features = false, features = ["derive"], optional = true }1617[lib]18name = "flipper"19path = "lib.rs"20crate-type = ["cdylib"]2122[features]23default = ["std"]24std = [25 "ink_primitives/std",26 "ink_metadata",27 "ink_metadata/std",28 "ink_env/std",29 "ink_storage/std",30 "ink_lang/std",31 "scale/std",32 "scale-info",33 "scale-info/std",34]35ink-as-dependency = []