Skip to content

Commit

Permalink
Use crates.io version of druid
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhickman committed Jun 5, 2023
1 parent ac3b750 commit 1363c32
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "target/debug/grpc-client.exe",
"program": "target/debug/lanquetta.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
Expand Down
87 changes: 45 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "lanquetta"
description = "A GUI application for calling gRPC services."
version = "0.6.0"
version = "0.6.1"
authors = ["Andrew Hickman <andrew.hickman1@sky.com>"]
repository = "https://github.com/andrewhickman/grpc-client"
documentation = "https://docs.rs/grpc-client"
repository = "https://github.com/andrewhickman/lanquetta"
documentation = "https://docs.rs/lanquetta"
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
Expand Down Expand Up @@ -42,8 +42,7 @@ hyper = "0.14.26"
protox = "0.3.3"

[dependencies.druid]
git = "https://github.com/linebender/druid.git"
branch = "master"
version = "0.8.3"
default-features = false
features = ["im", "svg", "serde", "x11"]

Expand Down
2 changes: 1 addition & 1 deletion src/app/delegate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl AppDelegate<app::State> for Delegate {
Handled::Yes
} else if cmd.is(command::OPEN_GITHUB) {
let _ = open::that(concat!(
"https://github.com/andrewhickman/grpc-client/tree/",
"https://github.com/andrewhickman/lanquetta/tree/",
env!("VERGEN_GIT_SHA")
));
Handled::Yes
Expand Down

0 comments on commit 1363c32

Please sign in to comment.