This PR updates the edit prediction onboarding modal with steps about subscribing to a plan. When the user is not subscribed to a plan, we display a link to the account page to sign up for one: <img width="612" alt="Screenshot 2025-05-09 at 6 04 05 PM" src="https://github.com/user-attachments/assets/0300194a-c419-43d9-8214-080674d31e12" /> If the user is already subscribed to a plan we indicate which plan they are on and how many edit predictions they get with it: <img width="616" alt="Screenshot 2025-05-09 at 6 03 16 PM" src="https://github.com/user-attachments/assets/e2506096-e499-41f2-ba1f-fca768cb48b9" /> <img width="595" alt="Screenshot 2025-05-09 at 5 46 18 PM" src="https://github.com/user-attachments/assets/de82f8c2-cad8-45fb-8988-26606a8dc3e1" /> Release Notes: - N/A
82 lines
2.3 KiB
TOML
82 lines
2.3 KiB
TOML
[package]
|
|
name = "zeta"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
exclude = ["fixtures"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/zeta.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
arrayvec.workspace = true
|
|
client.workspace = true
|
|
collections.workspace = true
|
|
command_palette_hooks.workspace = true
|
|
db.workspace = true
|
|
editor.workspace = true
|
|
feature_flags.workspace = true
|
|
fs.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
http_client.workspace = true
|
|
indoc.workspace = true
|
|
inline_completion.workspace = true
|
|
language.workspace = true
|
|
language_model.workspace = true
|
|
log.workspace = true
|
|
menu.workspace = true
|
|
migrator.workspace = true
|
|
paths.workspace = true
|
|
postage.workspace = true
|
|
project.workspace = true
|
|
proto.workspace = true
|
|
regex.workspace = true
|
|
release_channel.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
telemetry.workspace = true
|
|
telemetry_events.workspace = true
|
|
theme.workspace = true
|
|
thiserror.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
workspace.workspace = true
|
|
worktree.workspace = true
|
|
zed_actions.workspace = true
|
|
zed_llm_client.workspace = true
|
|
workspace-hack.workspace = true
|
|
|
|
[dev-dependencies]
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
client = { workspace = true, features = ["test-support"] }
|
|
clock = { workspace = true, features = ["test-support"] }
|
|
ctor.workspace = true
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
http_client = { workspace = true, features = ["test-support"] }
|
|
indoc.workspace = true
|
|
language = { workspace = true, features = ["test-support"] }
|
|
reqwest_client = { workspace = true, features = ["test-support"] }
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
theme = { workspace = true, features = ["test-support"] }
|
|
tree-sitter-go.workspace = true
|
|
tree-sitter-rust.workspace = true
|
|
unindent.workspace = true
|
|
workspace = { workspace = true, features = ["test-support"] }
|
|
worktree = { workspace = true, features = ["test-support"] }
|
|
call = { workspace = true, features = ["test-support"] }
|