diff --git a/.gitignore b/.gitignore index 6c34e55..e99a123 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,4 @@ fm_client_db .vscode .DS_Store fm_db - +result diff --git a/Cargo.lock b/Cargo.lock index 1b15a8e..3eb26f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -699,7 +699,7 @@ dependencies = [ [[package]] name = "clientd-stateless" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "async-utility", @@ -1044,7 +1044,7 @@ dependencies = [ [[package]] name = "fedimint-clientd" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "async-utility", @@ -1068,7 +1068,7 @@ dependencies = [ "lazy_static", "lightning-invoice", "lnurl-rs", - "multimint 0.3.2", + "multimint 0.3.4", "reqwest 0.12.4", "serde", "serde_json", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "multimint" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "fedimint-client", diff --git a/Cargo.toml b/Cargo.toml index 1e28912..479b8a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,15 @@ [workspace] members = ["multimint", "fedimint-clientd", "clientd-stateless"] resolver = "2" -version = "0.3.3" [workspace.package] -version = "0.3.3" +version = "0.3.4" +edition = "2021" +repository = "https://github.com/fedimint/fedimint-clientd" +keywords = ["fedimint", "bitcoin", "lightning", "ecash"] +license = "MIT" +readme = "README.md" +authors = ["The Fedimint Developers"] # Config for 'cargo dist' [workspace.metadata.dist] diff --git a/clientd-stateless/Cargo.toml b/clientd-stateless/Cargo.toml index 1f795d1..111b57d 100644 --- a/clientd-stateless/Cargo.toml +++ b/clientd-stateless/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "clientd-stateless" -version = "0.3.3" -edition = "2021" description = "A stateless fedimint client daemon" -repository = "https://github.com/fedimint/fedimint-clientd" -keywords = ["fedimint", "bitcoin", "lightning", "ecash"] -license = "MIT" +version.workspace = true +edition.workspace = true +repository.workspace = true +keywords.workspace = true +license.workspace = true +readme.workspace = true +authors.workspace = true [dependencies] anyhow = "1.0.75" diff --git a/fedimint-clientd/Cargo.toml b/fedimint-clientd/Cargo.toml index ad08a18..6fff9b6 100644 --- a/fedimint-clientd/Cargo.toml +++ b/fedimint-clientd/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "fedimint-clientd" -version = "0.3.3" -edition = "2021" description = "A fedimint client daemon for server side applications to hold, use, and manage Bitcoin" -repository = "https://github.com/fedimint/fedimint-clientd" -keywords = ["fedimint", "bitcoin", "lightning", "ecash"] -license = "MIT" +version.workspace = true +edition.workspace = true +repository.workspace = true +keywords.workspace = true +license.workspace = true +readme.workspace = true +authors.workspace = true [dependencies] anyhow = "1.0.75" @@ -41,6 +43,5 @@ time = { version = "0.3.25", features = ["formatting"] } chrono = "0.4.31" futures-util = "0.3.30" clap = { version = "3", features = ["derive", "env"] } -multimint = { version = "0.3.2" } -# multimint = { path = "../multimint" } +multimint = { path = "../multimint" } axum-otel-metrics = "0.8.0" diff --git a/multimint/Cargo.toml b/multimint/Cargo.toml index 52881be..2bd84a6 100644 --- a/multimint/Cargo.toml +++ b/multimint/Cargo.toml @@ -1,9 +1,13 @@ [package] name = "multimint" -version = "0.3.4" -edition = "2021" description = "A library for managing fedimint clients across multiple federations" -license = "MIT" +version.workspace = true +edition.workspace = true +repository.workspace = true +keywords.workspace = true +license.workspace = true +readme.workspace = true +authors.workspace = true [lib] path = "src/lib.rs"