/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/sqlite_extension/Cargo.toml
23 строки
681 B
Kenta Moriuchi
chore: Happy New Year 2026 (#31748)
08 янв 2026, 18:28
Не верифицирован
08 янв 2026, 18:28
8193cf9
Код
Авторство
О чём код?
# Copyright 2018-2026 the Deno authors. MIT license. # This crate is excluded from the workspace because it requires rusqlite's # "loadable_extension" feature, which is incompatible with the "session" feature # used by the rest of the workspace. Build with: # cargo build --manifest-path tests/sqlite_extension/Cargo.toml [package] name = "test_sqlite_extension" version = "0.1.0" authors = ["the Deno authors"] edition = "2024" license = "MIT" publish = false repository = "https://github.com/denoland/deno" [lib] crate-type = ["cdylib"] [workspace] [dependencies] rusqlite = { version = "0.37.0", default-features = false, features = ["loadable_extension", "functions"] }