diff options
| author | Sébastien d'Herbais de Thun <sebastien.d.herbais@gmail.com> | 2023-04-23 14:33:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-23 14:33:56 +0200 |
| commit | 561ff979d574f496415c0499345d41da2e1f6e1e (patch) | |
| tree | 037479ac000bd87a1cb2149e5389b28f08d24051 /cli/build.rs | |
| parent | 2fbb14f712708188649181525813b3ac5a02e0fb (diff) | |
Add instrumentation (Part 1) (#761)
Diffstat (limited to 'cli/build.rs')
| -rw-r--r-- | cli/build.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/build.rs b/cli/build.rs index 75e8492a..b6f7d6ee 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -24,9 +24,9 @@ pub fn typst_version() -> String { format!("{pkg} ({hash})") } -mod args { - include!("src/args.rs"); -} +#[path = "src/args.rs"] +#[allow(dead_code)] +mod args; fn main() { println!("cargo:rerun-if-env-changed=TYPST_VERSION"); |
