1[package]2name = "orml-vesting"3description = "Provides scheduled balance locking mechanism, in a *graded vesting* way."4license = "Apache-2.0"5version = "0.4.1-dev"6authors = ["Laminar Developers <hello@laminar.one>"]7edition = "2018"89[dependencies]10scale-info = { version = "1.0", default-features = false, features = ["derive"] }11serde = { version = "1.0.124", optional = true }12codec = { package = "parity-scale-codec", version = "2.3.1", default-features = false, features = ["max-encoded-len"] }13sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }14sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }15sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }1617frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }18frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }1920[dev-dependencies]21sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }22pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }2324[features]25default = ["std"]26std = [27 "serde",28 "codec/std",29 "scale-info/std",30 "sp-runtime/std",31 "sp-std/std",32 "sp-io/std",33 "frame-support/std",34 "frame-system/std",35]36runtime-benchmarks = [37 "frame-support/runtime-benchmarks",38 "frame-system/runtime-benchmarks",39]40try-runtime = ["frame-support/try-runtime"]