Cargo.toml (588B)
1 [package] 2 name = "roast" 3 version = "0.1.0" 4 edition = "2021" 5 6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8 [dependencies] 9 schnorr_fun = { path = "../../secp256kfun/schnorr_fun", features = ["serde"]} 10 secp256kfun = { path = "../../secp256kfun/secp256kfun", features = ["proptest"]} 11 rand = "0.8.5" 12 sha2 = "0.10" 13 rng = "0.1.0" 14 clightningrpc = "0.2.0" 15 16 serde = { version = "1.0.117", features = ["derive"] } 17 serde_json = "1.0.59" 18 rocket = "0.5.0-rc.2" 19 thiserror = "1.0.21" 20 21 tokio = { version = "1", features = ["full"] } 22 mini-redis = "0.4"