Skip to content

Commit b67a1ff

Browse files
committed
sea-orm integration + rust-lightning persistence layer
1 parent 244f44c commit b67a1ff

29 files changed

+4429
-686
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/tmp
88

99
# will have compiled files and executables
10-
/target
10+
**/target
1111

1212
# These are backup files generated by rustfmt
1313
**/*.rs.bk

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[submodule "rust-lightning"]
22
path = rust-lightning
3-
url = https://github.com/RGB-Tools/rust-lightning.git
4-
branch = rgb
3+
url = https://github.com/dcorral/rust-lightning.git
4+
branch = persistence-layer
55
shallow = true

Cargo.lock

Lines changed: 21 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ axum-extra = "0.9.4"
1515
# axum-macros = "0.4.2" # uncomment to use debug_handler
1616
baid58 = "0.4.4"
1717
base64 = "0.22.1"
18+
bincode = "1"
1819
biscuit-auth = "6.0.0"
1920
bitcoin = "0.32"
2021
bitcoin-bech32 = "0.13"
@@ -40,6 +41,12 @@ rgb-lib = { version = "0.3.0-beta.5", features = [
4041
"electrum",
4142
"esplora",
4243
] }
44+
rln-migration = { path = "migration" }
45+
sea-orm = { version = "1.1.19", default-features = false, features = [
46+
"macros",
47+
"runtime-tokio-rustls",
48+
"sqlx-sqlite",
49+
] }
4350
scrypt = "0.11.0"
4451
serde = { version = "^1.0", features = ["derive"] }
4552
serde_json = "1.0"

0 commit comments

Comments
 (0)