Skip to content

Commit

Permalink
feat: start hop_leap
Browse files Browse the repository at this point in the history
  • Loading branch information
pxseu committed Aug 23, 2022
1 parent e136e10 commit 8951f25
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 0 deletions.
48 changes: 48 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[workspace]
members = ["hop_leap"]

[package]
name = "hop_cli"
version = "0.1.24"
Expand Down
37 changes: 37 additions & 0 deletions hop_leap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "hop_leap"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
authors = ["Hop Inc."]
description = "Easily connect to Leap Edge"
repository = "https://github.com/hopinc/hop_cli/tree/main/hop_leap"
homepage = "https://hop.io"

[dependencies]
serde_json = "^1.0"

[dependencies.async-tungstenite]
version = "^0.17"
default-features = false
features = ["tokio-runtime"]

[dependencies.serde]
version = "^1.0"
features = ["derive"]

[dependencies.async-compression]
version = "^0.3"
features = ["tokio", "zlib"]

[dependencies.tokio]
version = "^1.20"
features = ["macros", "net", "time", "sync"]

[features]
default = ["rustls-tls-webpki-roots"]

# allow for multiple different TLS backends
native-tls = ["async-tungstenite/tokio-native-tls"]
rustls-tls-native-roots = ["async-tungstenite/tokio-rustls-native-certs"]
rustls-tls-webpki-roots = ["async-tungstenite/tokio-rustls-webpki-roots"]
1 change: 1 addition & 0 deletions hop_leap/LICENSE
1 change: 1 addition & 0 deletions hop_leap/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#![warn(clippy::pedantic)]

0 comments on commit 8951f25

Please sign in to comment.