chore: move txbuilder to stable feature (#451)

This commit is contained in:
Santiago Carmuega 2024-04-21 04:12:25 -03:00 committed by GitHub
parent 8fde4a5e11
commit 9a405f22ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -20,10 +20,10 @@ pallas-crypto = { version = "=0.25.0", path = "../pallas-crypto/" }
pallas-codec = { version = "=0.25.0", path = "../pallas-codec/" }
pallas-utxorpc = { version = "=0.25.0", path = "../pallas-utxorpc/" }
pallas-configs = { version = "=0.25.0", path = "../pallas-configs/" }
pallas-txbuilder = { version = "=0.25.0", path = "../pallas-txbuilder/" }
pallas-rolldb = { version = "=0.25.0", path = "../pallas-rolldb/", optional = true }
pallas-wallet = { version = "=0.25.0", path = "../pallas-wallet/", optional = true }
pallas-hardano = { version = "=0.25.0", path = "../pallas-hardano/", optional = true }
pallas-txbuilder = { version = "=0.25.0", path = "../pallas-txbuilder/", optional = true }
[features]
unstable = ["pallas-rolldb", "pallas-wallet", "pallas-hardano", "pallas-txbuilder"]
unstable = ["pallas-rolldb", "pallas-wallet", "pallas-hardano"]

View file

@ -62,5 +62,4 @@ pub use pallas_applying as applying;
pub use pallas_wallet as wallet;
#[doc(inline)]
#[cfg(feature = "unstable")]
pub use pallas_txbuilder as txbuilder;