Skip to content

Commit 9deb77c

Browse files
author
Dillen Meijboom
committed
feat: initial commit
0 parents  commit 9deb77c

File tree

7 files changed

+4459
-0
lines changed

7 files changed

+4459
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
/Cargo.lock

Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "oembed"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
url = "2.3.1"
10+
lazy_static = "1.4.0"
11+
serde_json = "1.0.96"
12+
serde = { version = "1.0.160", features = ["derive"] }
13+
reqwest = { version = "0.11.16", features = ["json"], default-features = false }

0 commit comments

Comments
 (0)