Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
fixed cargo.toml format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fishseabowl committed Jan 7, 2024
1 parent 7d44868 commit 25f6b70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/client/data-availability/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ mp-storage = { workspace = true, default-features = true }
prometheus-endpoint = { workspace = true }

# Optional
avail-subxt = { git = "https://github.com/availproject/avail", version = "0.4.0", tag = "v1.8.0.0",optional = true }
avail-subxt = { git = "https://github.com/availproject/avail", version = "0.4.0", tag = "v1.8.0.0", optional = true }
celestia-rpc = { git = "https://github.com/eigerco/lumina", rev = "ccc5b9bfeac632cccd32d35ecb7b7d51d71fbb87", optional = true }
celestia-types = { git = "https://github.com/eigerco/lumina", rev = "ccc5b9bfeac632cccd32d35ecb7b7d51d71fbb87", optional = true }
clap = { workspace = true, features = ["derive"], optional = true }
sp-keyring = { workspace = true,optional = true }
subxt = { workspace = true,optional = true }
sp-keyring = { workspace = true, optional = true }
subxt = { workspace = true, optional = true }

[features]
default = []
clap = ["dep:clap"]
avail = ["avail-subxt", "sp-keyring", "subxt"]
celestia = ["celestia-rpc","celestia-types"]
avail = ["dep:avail-subxt", "dep:sp-keyring", "dep:subxt"]
celestia = ["dep:celestia-rpc", "dep:celestia-types"]

0 comments on commit 25f6b70

Please sign in to comment.