mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 07:32:08 +03:00
75a42c27db
This reduces the server time to compute the hash from 40ms to 5µs, which should remove this as a noticable chunk of CPU time in production. (An attacker who has access to our database will now need only 10^54 years of CPU time instead of 10^58 to brute force a token). Release Notes: - Improved sign in latency by 40ms.
44 lines
919 B
TOML
44 lines
919 B
TOML
[package]
|
|
description = "Shared logic for communication between the Zed app and the zed.dev server"
|
|
edition = "2021"
|
|
name = "rpc"
|
|
version = "0.1.0"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/rpc.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = ["collections/test-support", "gpui/test-support"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-tungstenite = "0.16"
|
|
base64.workspace = true
|
|
collections.workspace = true
|
|
futures.workspace = true
|
|
gpui = { workspace = true, optional = true }
|
|
parking_lot.workspace = true
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
rsa = "0.4"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
strum.workspace = true
|
|
tracing = { version = "0.1.34", features = ["log"] }
|
|
util.workspace = true
|
|
zstd = "0.11"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.9"
|
|
|
|
[dev-dependencies]
|
|
collections.workspace = true
|
|
env_logger.workspace = true
|
|
gpui.workspace = true
|