Cargo.toml

  1[package]
  2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
  3description = "The fast, collaborative code editor."
  4edition = "2021"
  5name = "zed"
  6version = "0.58.0"
  7
  8[lib]
  9name = "zed"
 10path = "src/zed.rs"
 11doctest = false
 12
 13[[bin]]
 14name = "Zed"
 15path = "src/main.rs"
 16
 17[dependencies]
 18activity_indicator = { path = "../activity_indicator" }
 19assets = { path = "../assets" }
 20auto_update = { path = "../auto_update" }
 21breadcrumbs = { path = "../breadcrumbs" }
 22chat_panel = { path = "../chat_panel" }
 23cli = { path = "../cli" }
 24collections = { path = "../collections" }
 25command_palette = { path = "../command_palette" }
 26context_menu = { path = "../context_menu" }
 27client = { path = "../client" }
 28clock = { path = "../clock" }
 29contacts_panel = { path = "../contacts_panel" }
 30contacts_status_item = { path = "../contacts_status_item" }
 31diagnostics = { path = "../diagnostics" }
 32editor = { path = "../editor" }
 33file_finder = { path = "../file_finder" }
 34search = { path = "../search" }
 35fsevent = { path = "../fsevent" }
 36fuzzy = { path = "../fuzzy" }
 37go_to_line = { path = "../go_to_line" }
 38gpui = { path = "../gpui" }
 39journal = { path = "../journal" }
 40language = { path = "../language" }
 41lsp = { path = "../lsp" }
 42outline = { path = "../outline" }
 43plugin_runtime = { path = "../plugin_runtime" }
 44project = { path = "../project" }
 45project_panel = { path = "../project_panel" }
 46project_symbols = { path = "../project_symbols" }
 47rpc = { path = "../rpc" }
 48settings = { path = "../settings" }
 49sum_tree = { path = "../sum_tree" }
 50text = { path = "../text" }
 51terminal = { path = "../terminal" }
 52theme = { path = "../theme" }
 53theme_selector = { path = "../theme_selector" }
 54util = { path = "../util" }
 55vim = { path = "../vim" }
 56workspace = { path = "../workspace" }
 57anyhow = "1.0.38"
 58async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
 59async-recursion = "0.3"
 60async-trait = "0.1"
 61backtrace = "0.3"
 62chrono = "0.4"
 63ctor = "0.1.20"
 64dirs = "3.0"
 65easy-parallel = "3.1.0"
 66env_logger = "0.9"
 67futures = "0.3"
 68ignore = "0.4"
 69image = "0.23"
 70indexmap = "1.6.2"
 71isahc = "1.7"
 72lazy_static = "1.4.0"
 73libc = "0.2"
 74log = { version = "0.4.16", features = ["kv_unstable_serde"] }
 75num_cpus = "1.13.0"
 76parking_lot = "0.11.1"
 77postage = { version = "0.4.1", features = ["futures-traits"] }
 78rand = "0.8.3"
 79regex = "1.5"
 80rsa = "0.4"
 81rust-embed = { version = "6.3", features = ["include-exclude"] }
 82serde = { version = "1.0", features = ["derive", "rc"] }
 83serde_json = { version = "1.0", features = ["preserve_order"] }
 84serde_path_to_error = "0.1.4"
 85simplelog = "0.9"
 86smallvec = { version = "1.6", features = ["union"] }
 87smol = "1.2.5"
 88tempdir = { version = "0.3.7" }
 89thiserror = "1.0.29"
 90tiny_http = "0.8"
 91toml = "0.5"
 92tree-sitter = "0.20"
 93tree-sitter-c = "0.20.1"
 94tree-sitter-cpp = "0.20.0"
 95tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "05e3631c6a0701c1fa518b0fee7be95a2ceef5e2" }
 96tree-sitter-go = { git = "https://github.com/tree-sitter/tree-sitter-go", rev = "aeb2f33b366fd78d5789ff104956ce23508b85db" }
 97tree-sitter-json = { git = "https://github.com/tree-sitter/tree-sitter-json", rev = "137e1ce6a02698fc246cdb9c6b886ed1de9a1ed8" }
 98tree-sitter-rust = "0.20.1"
 99tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
100tree-sitter-python = "0.20.2"
101tree-sitter-toml = { git = "https://github.com/tree-sitter/tree-sitter-toml", rev = "342d9be207c2dba869b9967124c679b5e6fd0ebe" }
102tree-sitter-typescript = "0.20.1"
103url = "2.2"
104
105[dev-dependencies]
106text = { path = "../text", features = ["test-support"] }
107editor = { path = "../editor", features = ["test-support"] }
108gpui = { path = "../gpui", features = ["test-support"] }
109language = { path = "../language", features = ["test-support"] }
110lsp = { path = "../lsp", features = ["test-support"] }
111project = { path = "../project", features = ["test-support"] }
112rpc = { path = "../rpc", features = ["test-support"] }
113client = { path = "../client", features = ["test-support"] }
114settings = { path = "../settings", features = ["test-support"] }
115util = { path = "../util", features = ["test-support"] }
116workspace = { path = "../workspace", features = ["test-support"] }
117env_logger = "0.9"
118serde_json = { version = "1.0", features = ["preserve_order"] }
119unindent = "0.1.7"
120
121[package.metadata.bundle]
122icon = ["app-icon@2x.png", "app-icon.png"]
123identifier = "dev.zed.Zed"
124name = "Zed"
125osx_minimum_system_version = "10.14"