fix: remove math from root crate (#541)
This commit is contained in:
parent
a8c4ba3979
commit
3ba8dac19c
2 changed files with 6 additions and 5 deletions
|
|
@ -20,7 +20,6 @@ pallas-codec = { version = "=0.31.0", path = "../pallas-codec/" }
|
||||||
pallas-utxorpc = { version = "=0.31.0", path = "../pallas-utxorpc/" }
|
pallas-utxorpc = { version = "=0.31.0", path = "../pallas-utxorpc/" }
|
||||||
pallas-configs = { version = "=0.31.0", path = "../pallas-configs/" }
|
pallas-configs = { version = "=0.31.0", path = "../pallas-configs/" }
|
||||||
pallas-txbuilder = { version = "=0.31.0", path = "../pallas-txbuilder/" }
|
pallas-txbuilder = { version = "=0.31.0", path = "../pallas-txbuilder/" }
|
||||||
pallas-math = { version = "=0.31.0", path = "../pallas-math/", optional = true }
|
|
||||||
pallas-applying = { version = "=0.31.0", path = "../pallas-applying/", optional = true }
|
pallas-applying = { version = "=0.31.0", path = "../pallas-applying/", optional = true }
|
||||||
pallas-wallet = { version = "=0.31.0", path = "../pallas-wallet/", optional = true }
|
pallas-wallet = { version = "=0.31.0", path = "../pallas-wallet/", optional = true }
|
||||||
pallas-hardano = { version = "=0.31.0", path = "../pallas-hardano/", optional = true }
|
pallas-hardano = { version = "=0.31.0", path = "../pallas-hardano/", optional = true }
|
||||||
|
|
@ -29,5 +28,4 @@ pallas-hardano = { version = "=0.31.0", path = "../pallas-hardano/", optional =
|
||||||
hardano = ["pallas-hardano"]
|
hardano = ["pallas-hardano"]
|
||||||
wallet = ["pallas-wallet"]
|
wallet = ["pallas-wallet"]
|
||||||
applying = ["pallas-applying"]
|
applying = ["pallas-applying"]
|
||||||
math = ["pallas-math"]
|
|
||||||
unstable = ["hardano", "wallet", "applying"]
|
unstable = ["hardano", "wallet", "applying"]
|
||||||
|
|
|
||||||
|
|
@ -40,9 +40,12 @@ pub use pallas_crypto as crypto;
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use pallas_codec as codec;
|
pub use pallas_codec as codec;
|
||||||
|
|
||||||
#[doc(inline)]
|
// TODO: re-incorporate math here once we commit to a final set of upstream
|
||||||
#[cfg(feature = "pallas-math")]
|
// dependencies
|
||||||
pub use pallas_math as math;
|
|
||||||
|
// #[doc(inline)]
|
||||||
|
// #[cfg(feature = "pallas-math")]
|
||||||
|
// pub use pallas_math as math;
|
||||||
|
|
||||||
pub mod interop {
|
pub mod interop {
|
||||||
//! Interoperability with other protocols, formats & systems
|
//! Interoperability with other protocols, formats & systems
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue