mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
7752e9e81f
Summary: The `Node` type will be used in multiple places. Let's move it to a standalone crate so new libraries depending on it won't need to pull in all of revisionstore's dependencies. Note: I'd also like the `types` create to only define clean types. Given the fact NULL_ID is not a great design in Mercurial (`Option<Node>` is a better choice in Rust), it probably does not belong to the formal Rust `Node` type. This diff is merely about moving things with minimal changes. NULL_ID will be decoupled from `Node` in a follow-up. Reviewed By: markbt Differential Revision: D10132047 fbshipit-source-id: 5d05c5e0ac06a2d58556c4db11775503f9495626
13 lines
194 B
TOML
13 lines
194 B
TOML
[package]
|
|
name = "bookmarkstore"
|
|
version = "0.1.0"
|
|
authors = ["harveyhunt"]
|
|
|
|
[dependencies]
|
|
atomicwrites = "*"
|
|
error-chain = "*"
|
|
types = { path = "../types" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "*"
|