Move file-hash to content-address

This commit is contained in:
Carlo Nucera 2020-06-02 15:44:58 -04:00
parent 343c20a404
commit fd2eb41e64
6 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
#include "file-hash.hh"
#include "content-address.hh"
namespace nix {

View file

@ -3,7 +3,7 @@
#include "path.hh"
#include "types.hh"
#include "hash.hh"
#include "file-hash.hh"
#include "content-address.hh"
#include <map>

View file

@ -1,7 +1,7 @@
#pragma once
#include "rust-ffi.hh"
#include "file-hash.hh"
#include "content-address.hh"
namespace nix {

View file

@ -2,7 +2,7 @@
#include "path.hh"
#include "hash.hh"
#include "file-hash.hh"
#include "content-address.hh"
#include "serialise.hh"
#include "crypto.hh"
#include "lru-cache.hh"

View file

@ -1,6 +1,6 @@
#include "command.hh"
#include "hash.hh"
#include "file-hash.hh"
#include "content-address.hh"
#include "legacy.hh"
#include "shared.hh"
#include "references.hh"