just playing with tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cargo: specify explicit rev for git dep on dag

+9 -9
+7 -7
Cargo.lock
··· 479 479 [[package]] 480 480 name = "dag" 481 481 version = "0.1.0" 482 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 482 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 483 483 dependencies = [ 484 484 "anyhow", 485 485 "async-trait", ··· 504 504 [[package]] 505 505 name = "dag-types" 506 506 version = "0.1.0" 507 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 507 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 508 508 dependencies = [ 509 509 "abomonation", 510 510 "abomonation_derive", ··· 559 559 [[package]] 560 560 name = "drawdag" 561 561 version = "0.1.0" 562 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 562 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 563 563 564 564 [[package]] 565 565 name = "either" ··· 1171 1171 [[package]] 1172 1172 name = "mincode" 1173 1173 version = "0.1.0" 1174 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 1174 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 1175 1175 dependencies = [ 1176 1176 "byteorder", 1177 1177 "serde", ··· 1181 1181 [[package]] 1182 1182 name = "minibytes" 1183 1183 version = "0.1.0" 1184 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 1184 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 1185 1185 dependencies = [ 1186 1186 "serde", 1187 1187 ] ··· 1223 1223 [[package]] 1224 1224 name = "nonblocking" 1225 1225 version = "0.1.0" 1226 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 1226 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 1227 1227 1228 1228 [[package]] 1229 1229 name = "normalize-line-endings" ··· 2277 2277 [[package]] 2278 2278 name = "vlqencoding" 2279 2279 version = "0.1.0" 2280 - source = "git+https://github.com/facebook/sapling#fcacb0ad73e91ff899ab6fc34787dce1da884250" 2280 + source = "git+https://github.com/facebook/sapling?rev=97e9d5112a4150286b44ba8544f543c69147e195#97e9d5112a4150286b44ba8544f543c69147e195" 2281 2281 2282 2282 [[package]] 2283 2283 name = "wait-timeout"
+1 -1
Cargo.toml
··· 40 40 clap_mangen = "0.2.6" 41 41 config = { version = "0.13.3", default-features = false, features = ["toml"] } 42 42 crossterm = { version = "0.25", default-features = false } 43 - dag = { git = "https://github.com/facebook/sapling", optional = true, default-features = false } 43 + dag = { git = "https://github.com/facebook/sapling", rev = "97e9d5112a4150286b44ba8544f543c69147e195", optional = true, default-features = false } 44 44 dirs = "4.0.0" 45 45 git2 = "0.16.0" 46 46 glob = "0.3.1"
+1 -1
flake.nix
··· 45 45 cargoLock = { 46 46 lockFile = "${self}/Cargo.lock"; 47 47 outputHashes = { 48 - "dag-0.1.0" = "sha256-Tbta3hkBMvovqz84cu++inVDqrEB2vCGcwTaErOczRw="; 48 + "dag-0.1.0" = "sha256-ZSPdQ5WLx977p36bIbxhbsp2k57DbFaAemGj5mcKavw="; 49 49 "quickcheck_arbitrary_derive-0.1.0" = "sha256-kUgApls8Uq07QcDrgOLXmAk08fNaEdQtDrnGhP6ff6w="; 50 50 }; 51 51 };