Skip to content

Commit 6df505e

Browse files
committed
Initial working version :)
0 parents  commit 6df505e

File tree

6 files changed

+549
-0
lines changed

6 files changed

+549
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
__pycache__

Cargo.lock

Lines changed: 317 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "pyext-canonicaljson"
3+
version = "0.1.0"
4+
authors = ["Mathieu Leplatre <[email protected]>"]
5+
edition = "2018"
6+
7+
[lib]
8+
name = "canonicaljson"
9+
crate-type = ["cdylib"]
10+
11+
[dependencies]
12+
serde = "1.0"
13+
serde_json = "1.0"
14+
15+
[dependencies.pyo3]
16+
version = "0.11"
17+
features = ["extension-module"]

canonicaljson.so

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/release/libcanonicaljson.so

0 commit comments

Comments
 (0)