Fix cargo toml formatting and bump versions (#126)

* fix cargo toml formatting

* bump versions for runtime and node
This commit is contained in:
Özgün Özerk
2024-02-21 13:57:25 +03:00
committed by GitHub
parent 7af4ae2c50
commit 5d6c352c03
4 changed files with 14 additions and 16 deletions
+6 -6
View File
@@ -5,16 +5,16 @@ description = "A generic parachain runtime template"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
version = "0.1.0"
version = "0.1.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
targets = [ "x86_64-unknown-linux-gnu" ]
[dependencies]
hex-literal = { workspace = true, optional = true }
log = { workspace = true }
parity-scale-codec = { workspace = true, features = ["derive"] }
scale-info = { workspace = true, features = ["derive"] }
parity-scale-codec = { workspace = true, features = [ "derive" ] }
scale-info = { workspace = true, features = [ "derive" ] }
smallvec = { workspace = true }
# Substrate
@@ -81,7 +81,7 @@ sp-io = { workspace = true }
substrate-wasm-builder = { workspace = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"assets-common/std",
"cumulus-pallet-aura-ext/std",
@@ -194,4 +194,4 @@ try-runtime = [
"sp-runtime/try-runtime",
]
experimental = ["pallet-aura/experimental"]
experimental = [ "pallet-aura/experimental" ]