Skip to content

Commit 5a02540

Browse files
committed
Unbreak tea/gui
1 parent db050f2 commit 5a02540

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,17 @@ To see what is available refer to the [pantry] docs or you can run:
166166

167167
 
168168

169+
# Interesting Uses
170+
171+
* You can grab cURL’s CA certificates which we pkg and keep up to date
172+
(`curl.se/ca-certs`). These are commonly needed across ecosystems but not
173+
always easily accessible.
174+
* grab libraries that wrappers need like openssl or sqlite
175+
* run a real database (like postgres) easily
176+
* load local AI models and their engines
177+
* load libraries and then use ffi to load symbols
178+
179+
 
169180

170181
# Contributing
171182

src/utils/semver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { is_what } from "../deps.ts"
2-
const { isArray, isString } = is_what
1+
//HEY YOU! DO NOT CHANGE THIS TO USE deps.ts since it breaks tea/gui
2+
import { isArray, isString } from "https://deno.land/x/is_what@v4.1.13/src/index.ts"
33

44
/**
55
* we have our own implementation because open source is full of weird

0 commit comments

Comments
 (0)