Skip to content

Commit

Permalink
init 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Wade committed Mar 3, 2024
1 parent a1badc1 commit 6fa9caf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
15 changes: 15 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "snow_rustler"
version = "0.1.0"
edition = "2021"

[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.36.0", features = ["full"] }
serde = { version = "1.0.197", features = ["derive"] }
mockall = { version = "0.12.1" }
serde_json = "1.0.114"

[dev-dependencies]
httpmock = "0.7.0"
tokio = { version = "1", features = ["full"] }
6 changes: 6 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pub mod auth;

pub mod snowflake_api {
pub mod client;
pub mod models;
}

0 comments on commit 6fa9caf

Please sign in to comment.