pass depset to ctx.runfiles transitive_files instead of list
diff --git a/bzl_library.bzl b/bzl_library.bzl
index 545d496..06e1b34 100644
--- a/bzl_library.bzl
+++ b/bzl_library.bzl
@@ -32,7 +32,7 @@
         # a separate program, or from `tools` of a genrule().
         DefaultInfo(
             files = all_files,
-            runfiles = ctx.runfiles(transitive_files = all_files.to_list()),
+            runfiles = ctx.runfiles(transitive_files = all_files),
         ),
 
         # We also define our own provider struct, for aggregation and testing.