Skip to content

Commit

Permalink
Merge pull request #38 from okjodom/versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow authored May 6, 2024
2 parents 168f2c6 + 19b7280 commit d5b7d2a
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ fm_client_db
.vscode
.DS_Store
fm_db

result
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
12 changes: 7 additions & 5 deletions clientd-stateless/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
15 changes: 8 additions & 7 deletions fedimint-clientd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
10 changes: 7 additions & 3 deletions multimint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit d5b7d2a

Please sign in to comment.