diff options
author | Satya Rohith <me@satyarohith.com> | 2024-07-29 22:28:04 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-29 12:58:04 -0400 |
commit | 8c2f1f5a55a2a9bb9e04c12236faa341b3fd49b6 (patch) | |
tree | f32705f9ab92d0f3f8c839f1cb00918fcd32cd05 /runtime/Cargo.toml | |
parent | 8bab761bccf976ac568b0b3f4decfd7e77747767 (diff) |
chore: upgrade to rust 1.80 (#24778)
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r-- | runtime/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 35b160636..72ffa3eae 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -28,6 +28,9 @@ hmr = ["include_js_files_for_snapshotting"] # assertion that a snapshot is provided. only_snapshotted_js_sources = ["include_js_files_for_snapshotting"] +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } + [lib] name = "deno_runtime" path = "lib.rs" |