You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
501 B

[package]
name = "uwurandom-cffi"
version = "0.1.0"
edition = "2021"
[lib]
name = "uwurandom_cffi"
# crate-type = ["cdylib"] # Creates dynamic lib
crate-type = ["staticlib"] # Creates static lib
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = "fat"
strip = "symbols"
[dependencies]
rand_xoshiro = "0.6.0"
uwurandom-rs = { git = "https://git.skye.vg/me/uwurandom-rs.git" }