Drop memory limit. It was useful to debug OOMs but is now unnecessary
[dnsseed-rust] / Cargo.toml
index efdea2bc47f0d9e34e7475d0a1151081ab912bb4..ab04e15f4ef968cd59c5dbab9be0815a2b3d41f9 100644 (file)
@@ -5,10 +5,20 @@ authors = ["matt"]
 edition = "2018"
 
 [dependencies]
-bitcoin = { git = "https://github.com/TheBlueMatt/rust-bitcoin", rev = "fbff0689f85da9ffa0969cad760cf2b4e903509e" }
-bitcoin_hashes = "0.3"
+bitcoin = "0.26"
+bgp-rs = "0.6"
 tokio = "0.1"
 bytes = "0.4"
 futures = "0.1"
-rand = "0.6"
+rand = "0.8"
 regex = "1"
+num_cpus = "1"
+
+[profile.dev]
+panic = "abort"
+
+[profile.release]
+debug = true
+lto = true
+codegen-units = 1
+panic = "abort"