diff --git a/Cargo.lock b/Cargo.lock index 4cbac73..2b13577 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -38,6 +38,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "compile-fmt" version = "0.1.0" +source = "git+https://github.com/slowli/compile-fmt.git?rev=0f0c1ab3e90c854beede0ceaa87ce0d96e209a7f#0f0c1ab3e90c854beede0ceaa87ce0d96e209a7f" [[package]] name = "const-decoder" diff --git a/Cargo.toml b/Cargo.toml index 7ef2a09..cd06425 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,10 @@ categories = ["encoding", "no-std"] description = "Constant functions for converting hex- and base64-encoded strings into bytes" repository = "https://github.com/slowli/const-decoder" -[dependencies] -compile-fmt = { path = "../compile-fmt" } +[dependencies.compile-fmt] +git = "https://github.com/slowli/compile-fmt.git" +version = "0.1.0" +rev = "0f0c1ab3e90c854beede0ceaa87ce0d96e209a7f" [dev-dependencies] base64 = "0.21.0" diff --git a/deny.toml b/deny.toml index 51bf8cf..122e850 100644 --- a/deny.toml +++ b/deny.toml @@ -31,3 +31,7 @@ allow-wildcard-paths = true [sources] unknown-registry = "deny" unknown-git = "deny" +allow-git = [ + # Temporarily allow relying on an unpiblished version of `compile-fmt` + "https://github.com/slowli/compile-fmt.git", +]