Skip to content

Commit

Permalink
Merge pull request #9 from will-bitlight/optional-fs-persistence
Browse files Browse the repository at this point in the history
make rgb-std's fs feature optional in rgb-interfaces
  • Loading branch information
dr-orlovsky authored Jul 26, 2024
2 parents 05166e9 + 8ae6f01 commit a016a05
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ strict_types = "2.7.0-beta.4"
aluvm = "0.11.0-beta.6"
bp-core = "0.11.0-beta.6"
chrono = "0.4.37"
rgb-std = { version = "0.11.0-beta.6", features = ["fs"] }
rgb-std = { version = "0.11.0-beta.6" }
serde_crate = { package = "serde", version = "1.0", optional = true }
serde_json = "1.0"
sha2 = "0.10.8"

[features]
default = []
all = ["serde"]
all = ["serde", "fs"]
serde = ["serde_crate", "rgb-std/serde", "chrono/serde"]
fs = ["rgb-std/fs"]

0 comments on commit a016a05

Please sign in to comment.