summaryrefslogtreecommitdiff
path: root/ext/fetch/lib.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2022-03-16 20:25:44 -0400
committerGitHub <noreply@github.com>2022-03-17 01:25:44 +0100
commitf7ab41583e2bb4425ce7ac89b123089d0f07836a (patch)
tree1a4bbe2052499f36a202270e950dae067343b3fc /ext/fetch/lib.rs
parent418c1eb4b3d65a9573030a074170a344723608de (diff)
fix: cargo publish fails without absolute paths (#13993)
This reverts commit 4e3ed37037a2aa1edeac260dc3463a81d9cf9b88. Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/fetch/lib.rs')
-rw-r--r--ext/fetch/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/fetch/lib.rs b/ext/fetch/lib.rs
index 59d5f9a6b..b744a9bbd 100644
--- a/ext/fetch/lib.rs
+++ b/ext/fetch/lib.rs
@@ -45,6 +45,7 @@ use std::borrow::Cow;
use std::cell::RefCell;
use std::convert::From;
use std::path::Path;
+use std::path::PathBuf;
use std::pin::Pin;
use std::rc::Rc;
use tokio::io::AsyncReadExt;
@@ -170,6 +171,10 @@ pub trait FetchPermissions {
fn check_read(&mut self, _p: &Path) -> Result<(), AnyError>;
}
+pub fn get_declaration() -> PathBuf {
+ PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("lib.deno_fetch.d.ts")
+}
+
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FetchArgs {