Skip to content

Commit

Permalink
revert devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
LimpidCrypto committed Jan 8, 2024
1 parent 5044de8 commit f7d7efe
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 52 deletions.
5 changes: 0 additions & 5 deletions .devcontainer/Dockerfile

This file was deleted.

29 changes: 0 additions & 29 deletions .devcontainer/devcontainer.json

This file was deleted.

10 changes: 0 additions & 10 deletions .devcontainer/docker-compose.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,3 @@ Cargo.lock

# Additional
src/main.rs

.DS_Store
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- make `new` methods of models public
- add `AsyncWebsocketClient`
- update dependencies
- add devcontainer

## [[v0.2.0-beta]]
### Added
Expand Down
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ default = [
"core",
"models",
"utils",
"net",
"tungstenite",
"embedded-websocket",
]
Expand All @@ -103,9 +102,13 @@ requests = ["core", "amounts", "currencies"]
ledger = ["core", "amounts", "currencies"]
amounts = ["core"]
currencies = ["core"]
net = ["dep:url", "dep:futures"]
tungstenite = ["tokio/full", "tokio-tungstenite/native-tls"]
embedded-websocket = ["dep:embedded-websocket"]
tungstenite = [
"dep:url",
"dep:futures",
"tokio/full",
"tokio-tungstenite/native-tls",
]
embedded-websocket = ["dep:url", "dep:futures", "dep:embedded-websocket"]
core = ["utils"]
utils = []
std = [
Expand Down
Binary file removed src/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion src/asynch/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#[cfg(feature = "net")]
#[cfg(any(feature = "tungstenite", feature = "embedded-websocket"))]
pub mod clients;
Binary file removed src/models/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use tokio::net::TcpStream;
use tokio_util::codec::Framed;
#[cfg(feature = "tungstenite")]
use xrpl::asynch::clients::async_websocket_client::AsyncWebsocketClientTungstenite;
#[cfg(any(feature = "tungstenite", feature = "embedded-websocket"))]
use xrpl::asynch::clients::async_websocket_client::WebsocketOpen;
#[cfg(feature = "embedded-websocket")]
use xrpl::asynch::clients::async_websocket_client::{
Expand Down

0 comments on commit f7d7efe

Please sign in to comment.