1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/ableos/Cargo.toml

144 lines
2.6 KiB
TOML
Raw Normal View History

2021-11-16 06:09:27 +00:00
[package]
2021-12-24 09:30:27 +00:00
edition = "2021"
2021-11-16 06:09:27 +00:00
name = "ableos"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
panic = "abort"
[package.metadata.bootimage]
2022-01-02 10:04:36 +00:00
run-args = [
2022-01-22 06:01:16 +00:00
"-cpu",
"Broadwell-v3",
2022-02-05 00:47:05 +00:00
2022-02-12 09:25:02 +00:00
2022-01-02 10:04:36 +00:00
"-serial",
"stdio",
"-smp",
"cores=2",
2022-01-18 12:15:51 +00:00
# An example gpu used with ableOS
2022-02-12 09:25:02 +00:00
"-device",
"virtio-gpu",
# An example disk used with ableOS
2022-01-02 10:04:36 +00:00
"-device",
"virtio-blk-pci,drive=drive0,id=virtblk0,num-queues=4",
# A simple example of a boot image
2022-01-02 10:04:36 +00:00
"-drive",
"file=disk.qcow2,if=none,id=drive0",
2022-02-07 09:42:57 +00:00
# "-qmp",
# "unix:../qmp-sock,server,nowait"
2022-01-02 10:04:36 +00:00
]
2021-11-16 06:09:27 +00:00
test-args = [
2021-12-24 09:30:27 +00:00
"-device",
"isa-debug-exit,iobase=0xf4,iosize=0x04",
"-serial",
"stdio",
2021-11-16 06:09:27 +00:00
]
[dependencies]
2021-11-23 11:53:06 +00:00
linked_list_allocator = "0.9.0"
2021-11-27 15:19:08 +00:00
lliw = "0.2.0"
2022-01-18 12:15:51 +00:00
# qoi_rs = "*"
2021-12-24 09:30:27 +00:00
spin = "0.5.2"
2022-01-07 16:31:47 +00:00
vga = "*"
2022-01-27 04:06:04 +00:00
log = "*"
2022-01-18 12:15:51 +00:00
pretty-hex = "0.2.1"
2022-01-18 14:30:09 +00:00
unicode-width = "0.1.7"
2022-01-22 06:01:16 +00:00
picorand = "*"
# watson = "0.4"
2022-02-05 00:47:05 +00:00
2022-02-08 09:01:29 +00:00
genfs = "0.1.0"
# pc-beeper = "0.1.0"
pc-beeper = {git = "https://github.com/AbleOS/pc-beeper"}
2022-02-08 09:01:29 +00:00
2022-02-12 09:25:02 +00:00
pci = {git="https://gitlab.com/robigalia/pci"}
libwasm = {git="https://git.ablecorp.us:443/able/libwasm.git"}
2022-02-07 09:42:57 +00:00
acpi = "4.1.0"
2022-02-12 09:25:02 +00:00
# [dependencies.ockam]
# version = "0.46.0"
# no-default-features = false
# features = ["alloc"]
2022-02-05 00:47:05 +00:00
[dependencies.rdrand]
version = "0.8.1"
default-features = false
2022-01-18 12:15:51 +00:00
2022-01-22 06:01:16 +00:00
[dependencies.serde]
version = "*"
default-features = false
features = ["derive", "alloc"]
2022-01-18 12:15:51 +00:00
2022-01-22 06:01:16 +00:00
[dependencies.serde_json]
version = "*"
default-features = false
features = ["alloc"]
[dependencies.hashbrown]
version = "0.11.2"
default-features = false
features = ["inline-more"]
2022-01-22 06:01:16 +00:00
[dependencies.rkyv]
version = "0.7.29"
default-features = false
features = ["size_64", "alloc"]
2022-01-17 01:42:11 +00:00
2022-01-27 04:06:04 +00:00
[dependencies.smoltcp]
2022-01-22 06:01:16 +00:00
version = "0.8.0"
default-features = false
2022-01-27 04:06:04 +00:00
features = ["log", "proto-ipv4"]
2022-01-22 06:01:16 +00:00
[dependencies.y-compositor-protocol]
git = "https://git.ablecorp.us:443/able/y-compositor-protocol.git"
2022-02-08 09:01:29 +00:00
[dependencies.ext2]
git = "https://git.ablecorp.us:443/able/ext2-rs.git"
2022-01-22 06:01:16 +00:00
[dependencies.shadeable]
path = "../shadeable"
2021-11-16 06:09:27 +00:00
[dependencies.facepalm]
path = "../facepalm"
[dependencies.ab_glyph]
2022-01-26 01:40:37 +00:00
version = "*"
default-features = false
features = ["libm"]
2021-11-28 20:50:14 +00:00
[dependencies.wasmi]
default-features = false
features = ["core"]
2021-12-24 09:30:27 +00:00
version = "*"
2021-11-28 20:50:14 +00:00
2021-11-16 06:09:27 +00:00
[dependencies.lazy_static]
features = ["spin_no_std"]
version = "1.0"
2021-12-24 09:30:27 +00:00
[dependencies.externc-libm]
2022-01-26 15:41:01 +00:00
git = "https://git.ablecorp.us:443/able/externc-libm.git"
2021-11-16 06:09:27 +00:00
[target.'cfg(target_arch = "x86_64")'.dependencies]
2021-12-24 09:30:27 +00:00
bootloader = { version = "0.9.8", features = ["map_physical_memory"] }
2022-02-01 23:12:29 +00:00
cpuio = { git = "https://git.ablecorp.us/ondra05/cpuio.git" }
2021-11-16 06:09:27 +00:00
pic8259 = "0.10.1"
2021-12-24 09:30:27 +00:00
uart_16550 = "0.2.0"
volatile = "0.2.6"
x86_64 = "*"