mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-25 01:34:02 +00:00
dont reference db items
This commit is contained in:
parent
d99a074bc0
commit
9c8dd66b20
3 changed files with 3 additions and 27 deletions
14
Cargo.lock
generated
14
Cargo.lock
generated
|
@ -1111,7 +1111,6 @@ dependencies = [
|
|||
"prometheus",
|
||||
"rand 0.8.5",
|
||||
"reqwest",
|
||||
"rope",
|
||||
"rpc",
|
||||
"scrypt",
|
||||
"serde",
|
||||
|
@ -1647,7 +1646,6 @@ dependencies = [
|
|||
"language",
|
||||
"postage",
|
||||
"project",
|
||||
"rope",
|
||||
"serde_json",
|
||||
"settings",
|
||||
"smallvec",
|
||||
|
@ -1804,7 +1802,6 @@ dependencies = [
|
|||
"postage",
|
||||
"project",
|
||||
"rand 0.8.5",
|
||||
"rope",
|
||||
"rpc",
|
||||
"serde",
|
||||
"settings",
|
||||
|
@ -2373,7 +2370,6 @@ dependencies = [
|
|||
"lazy_static",
|
||||
"log",
|
||||
"parking_lot 0.11.2",
|
||||
"rope",
|
||||
"smol",
|
||||
"sum_tree",
|
||||
"text",
|
||||
|
@ -2421,7 +2417,6 @@ dependencies = [
|
|||
"gpui",
|
||||
"menu",
|
||||
"postage",
|
||||
"rope",
|
||||
"settings",
|
||||
"text",
|
||||
"workspace",
|
||||
|
@ -2959,6 +2954,8 @@ dependencies = [
|
|||
"editor",
|
||||
"gpui",
|
||||
"log",
|
||||
"settings",
|
||||
"shellexpand",
|
||||
"util",
|
||||
"workspace",
|
||||
]
|
||||
|
@ -3045,7 +3042,6 @@ dependencies = [
|
|||
"postage",
|
||||
"rand 0.8.5",
|
||||
"regex",
|
||||
"rope",
|
||||
"rpc",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -4272,7 +4268,6 @@ dependencies = [
|
|||
"rand 0.8.5",
|
||||
"regex",
|
||||
"rocksdb",
|
||||
"rope",
|
||||
"rpc",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -5328,7 +5323,6 @@ dependencies = [
|
|||
"gpui",
|
||||
"json_comments",
|
||||
"postage",
|
||||
"rope",
|
||||
"schemars",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -6833,7 +6827,6 @@ dependencies = [
|
|||
"nvim-rs",
|
||||
"parking_lot 0.11.2",
|
||||
"project",
|
||||
"rope",
|
||||
"search",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -7524,7 +7517,6 @@ dependencies = [
|
|||
"client",
|
||||
"collections",
|
||||
"context_menu",
|
||||
"db",
|
||||
"drag_and_drop",
|
||||
"fs",
|
||||
"futures 0.3.24",
|
||||
|
@ -7582,7 +7574,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zed"
|
||||
version = "0.60.0"
|
||||
version = "0.60.4"
|
||||
dependencies = [
|
||||
"activity_indicator",
|
||||
"anyhow",
|
||||
|
|
|
@ -9,7 +9,6 @@ use rusqlite::Connection;
|
|||
use std::path::Path;
|
||||
use std::sync::Arc;
|
||||
|
||||
pub use items::*;
|
||||
pub use kvp::*;
|
||||
|
||||
pub struct Db {
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# Install sqlx-cli if needed
|
||||
[[ "$(sqlx --version)" == "sqlx-cli 0.5.7" ]] || cargo install sqlx-cli --version 0.5.7
|
||||
|
||||
cd crates/db
|
||||
|
||||
mkdir -p /tmp/zed-client-db
|
||||
DATABASE_URL=sqlite:///tmp/zed-client-db/test.db
|
||||
|
||||
cargo sqlx -D $DATABASE_URL database drop
|
||||
cargo sqlx -D $DATABASE_URL database setup
|
||||
cargo sqlx -D $DATABASE_URL prepare
|
Loading…
Reference in a new issue