diff --git a/Cargo.toml b/Cargo.toml index 18ebba9f..64fdae0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] [dependencies] -magical-macros = { path = "./macros" } +magical-macros = { version = "0.1.0-beta.1", path = "./macros" } log = "^0.4" bitcoin = { version = "0.23", features = ["use-serde"] } miniscript = { version = "1.0" } @@ -49,13 +49,13 @@ cli-utils = ["clap", "base64"] async-interface = ["async-trait"] # Debug/Test features -debug-proc-macros = ["magical-macros/debug", "testutils-macros/debug"] +debug-proc-macros = ["magical-macros/debug", "magical-testutils-macros/debug"] test-electrum = ["electrum"] test-md-docs = ["base64", "electrum"] [dev-dependencies] -testutils = { path = "./testutils" } -testutils-macros = { path = "./testutils-macros" } +magical-testutils = { version = "0.1.0-beta.1", path = "./testutils" } +magical-testutils-macros = { version = "0.1.0-beta.1", path = "./testutils-macros" } serial_test = "0.4" lazy_static = "1.4" rustyline = "6.0" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 64d9ed02..5d086aee 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "magical-macros" -version = "0.1.0" +version = "0.1.0-beta.1" authors = ["Alekos Filini "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -syn = { version = "1.0", features = ["parsing"] } +syn = { version = "1.0", features = ["parsing", "full"] } proc-macro2 = "1.0" quote = "1.0" diff --git a/testutils-macros/Cargo.toml b/testutils-macros/Cargo.toml index f699d1d7..8443c3eb 100644 --- a/testutils-macros/Cargo.toml +++ b/testutils-macros/Cargo.toml @@ -1,9 +1,13 @@ [package] -name = "testutils-macros" -version = "0.1.0" +name = "magical-testutils-macros" +version = "0.1.0-beta.1" authors = ["Alekos Filini "] edition = "2018" +[lib] +proc-macro = true +name = "testutils_macros" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -13,6 +17,3 @@ quote = "1.0" [features] debug = ["syn/extra-traits"] - -[lib] -proc-macro = true diff --git a/testutils/Cargo.toml b/testutils/Cargo.toml index 43c5c8eb..08470e01 100644 --- a/testutils/Cargo.toml +++ b/testutils/Cargo.toml @@ -1,9 +1,12 @@ [package] -name = "testutils" -version = "0.1.0" +name = "magical-testutils" +version = "0.1.0-beta.1" authors = ["Alekos Filini "] edition = "2018" +[lib] +name = "testutils" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # The latest bitcoincore-rpc depends on an older version of bitcoin, which in turns depends on an