Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@ build
docs/_build
venv
.venv
**/*.so
**/*.dll
**/*.dylib


# Added by cargo

/target
Cargo.lock
5 changes: 1 addition & 4 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ build:
os: ubuntu-22.04
tools:
python: "3.10"
jobs:
pre_install:
- pip install git+https://github.com/angr/archinfo.git
- pip install git+https://github.com/angr/pyvex.git
rust: "latest"

python:
install:
Expand Down
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "claripy"
version = "0.1.0"
edition = "2021"

[lib]
name = "clarirs"
crate-type = ["cdylib"]

[dependencies]
md5 = "0.7.0"
pyo3 = { version = "0.22.0", features = ["extension-module"] }
Loading