Skip to content

Commit 8aceb21

Browse files
committed
sea-orm integration + rust-lightning persistence layer
1 parent e291bdf commit 8aceb21

29 files changed

+4535
-742
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: 53 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ rgb-lib = { version = "0.3.0-beta.4", features = [
4040
"electrum",
4141
"esplora",
4242
] }
43+
rln-migration = { path = "migration" }
44+
sea-orm = { version = "1.1.19", default-features = false, features = [
45+
"macros",
46+
"runtime-async-std-rustls",
47+
"sqlx-sqlite",
48+
] }
4349
scrypt = "0.11.0"
4450
serde = { version = "^1.0", features = ["derive"] }
4551
serde_json = "1.0"

0 commit comments

Comments
 (0)