1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

#[allow(non_snake_case)]
#[allow(non_camel_case_types)]
#[allow(unused_variables)]
#[allow(dead_code)]
#[allow(non_upper_case_globals)]
#[allow(unaligned_references)]
#[allow(deref_nullptr)]
#[allow(improper_ctypes)]
#[allow(clippy::all)]
mod bindings {
    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

/// Point operations on the secp256k1 curve
pub mod point;

/// Scalar arithmetic modulo the group order
pub mod scalar;