2021-11-16 00:09:27 -06:00
|
|
|
[package]
|
2021-12-24 03:30:27 -06:00
|
|
|
edition = "2021"
|
2021-11-16 00:09:27 -06:00
|
|
|
name = "ableos"
|
2022-02-22 18:15:16 -06:00
|
|
|
version = "0.1.1"
|
2021-11-16 00:09:27 -06:00
|
|
|
# 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 04:04:36 -06:00
|
|
|
run-args = [
|
2022-08-01 04:06:04 -05:00
|
|
|
# "--nodefaults",
|
2022-06-22 13:59:24 -05:00
|
|
|
"-cpu",
|
|
|
|
"Broadwell-v3",
|
|
|
|
"-m",
|
|
|
|
"4G",
|
|
|
|
"-serial",
|
|
|
|
"stdio",
|
|
|
|
"-smp",
|
|
|
|
"cores=2",
|
2022-02-04 18:47:05 -06:00
|
|
|
|
2022-01-18 06:15:51 -06:00
|
|
|
|
2022-06-22 13:59:24 -05:00
|
|
|
"-soundhw",
|
|
|
|
"pcspk",
|
2022-08-06 06:48:40 -05:00
|
|
|
|
|
|
|
|
|
|
|
# "-device",
|
|
|
|
# "VGA",
|
|
|
|
# "-device",
|
|
|
|
# "virtio-gpu-pci",
|
|
|
|
|
2022-06-22 13:59:24 -05:00
|
|
|
"-device",
|
2022-08-06 06:48:40 -05:00
|
|
|
"vmware-svga",
|
|
|
|
|
2022-08-05 06:22:23 -05:00
|
|
|
"-device",
|
2022-08-06 06:48:40 -05:00
|
|
|
"sb16",
|
2022-08-05 06:22:23 -05:00
|
|
|
|
2022-02-18 02:24:10 -06:00
|
|
|
|
2022-06-22 13:59:24 -05:00
|
|
|
# "-machine", "pcspk-audiodev=0",
|
2022-04-25 13:39:39 -05:00
|
|
|
|
|
|
|
|
2022-07-29 13:29:54 -05:00
|
|
|
"-hdb",
|
2022-08-01 08:54:14 -05:00
|
|
|
"../userland/root_fs/ext2.img",
|
2022-07-29 13:29:54 -05:00
|
|
|
|
|
|
|
|
2022-08-01 04:06:04 -05:00
|
|
|
# "-qmp",
|
|
|
|
# "unix:../qmp-sock,server,nowait",
|
2022-02-07 03:42:57 -06:00
|
|
|
|
2022-01-02 04:04:36 -06:00
|
|
|
]
|
2022-04-11 15:51:54 -05:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
test-args = [
|
2022-06-22 13:59:24 -05:00
|
|
|
"-device",
|
|
|
|
"isa-debug-exit,iobase=0xf4,iosize=0x04",
|
|
|
|
"-serial",
|
|
|
|
"stdio",
|
2021-11-16 00:09:27 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-31 01:54:01 -05:00
|
|
|
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
|
2022-07-29 09:46:09 -05:00
|
|
|
qrcode = { path = "../qrcode-rust" }
|
2022-08-03 04:53:02 -05:00
|
|
|
bitflags = "1.3"
|
2021-11-27 09:19:08 -06:00
|
|
|
lliw = "0.2.0"
|
2022-04-11 15:51:54 -05:00
|
|
|
spin = "0.9"
|
2022-02-20 05:05:50 -06:00
|
|
|
pretty-hex = "0.2.1"
|
|
|
|
unicode-width = "0.1.7"
|
2022-04-11 13:53:33 -05:00
|
|
|
picorand = "0.1.0"
|
2022-02-20 05:05:50 -06:00
|
|
|
watson = "0.4"
|
|
|
|
genfs = "0.1.0"
|
2022-04-09 22:04:16 -05:00
|
|
|
axel = { git = "https://git.ablecorp.us/able/aos_userland" }
|
2022-04-12 13:26:52 -05:00
|
|
|
versioning = { git = "https://git.ablecorp.us/able/aos_userland" }
|
2022-07-31 01:54:01 -05:00
|
|
|
# embedded-graphics = "*"
|
2022-06-14 10:27:30 -05:00
|
|
|
pc-keyboard = "0.5"
|
2022-07-31 05:22:39 -05:00
|
|
|
# mini-backtrace = "0.1"
|
2022-08-06 22:12:48 -05:00
|
|
|
clparse = { git = "https://git.ablecorp.us/able/core_utils", default-features = false }
|
|
|
|
|
2022-07-31 05:22:39 -05:00
|
|
|
|
2022-08-05 06:22:23 -05:00
|
|
|
[dependencies.linked_list_allocator]
|
|
|
|
version = "0.9.0"
|
|
|
|
features = ["use_spin_nightly"]
|
2022-07-31 05:22:39 -05:00
|
|
|
[dependencies.log]
|
|
|
|
version = "0.4.17"
|
|
|
|
default-features = false
|
|
|
|
|
2022-02-20 08:34:20 -06:00
|
|
|
[dependencies.logos]
|
2022-04-11 15:51:54 -05:00
|
|
|
version = "0.12"
|
2022-02-20 08:34:20 -06:00
|
|
|
default-features = false
|
|
|
|
features = ["export_derive"]
|
2022-02-12 03:25:02 -06:00
|
|
|
|
2022-02-20 05:05:50 -06:00
|
|
|
[dependencies.rdrand]
|
2022-04-11 15:51:54 -05:00
|
|
|
version = "0.8"
|
2022-02-20 05:05:50 -06:00
|
|
|
default-features = false
|
2022-02-04 18:47:05 -06:00
|
|
|
|
2022-02-28 08:54:41 -06:00
|
|
|
[dependencies.kernel]
|
|
|
|
path = "../kernel"
|
2022-01-18 06:15:51 -06:00
|
|
|
|
2022-01-22 00:01:16 -06:00
|
|
|
[dependencies.serde]
|
2022-04-11 15:51:54 -05:00
|
|
|
version = "1.0"
|
2022-01-22 00:01:16 -06:00
|
|
|
default-features = false
|
|
|
|
features = ["derive", "alloc"]
|
2022-01-18 06:15:51 -06:00
|
|
|
|
2022-01-26 19:43:03 -06:00
|
|
|
[dependencies.hashbrown]
|
2022-08-02 04:49:17 -05:00
|
|
|
version = "0.12"
|
2022-01-26 19:43:03 -06:00
|
|
|
default-features = false
|
|
|
|
features = ["inline-more"]
|
|
|
|
|
2022-02-20 05:05:50 -06:00
|
|
|
[dependencies.rkyv]
|
2022-04-11 15:51:54 -05:00
|
|
|
version = "0.7"
|
2022-02-20 05:05:50 -06:00
|
|
|
default-features = false
|
|
|
|
features = ["size_64", "alloc"]
|
2022-01-16 19:42:11 -06:00
|
|
|
|
2022-02-18 10:04:10 -06:00
|
|
|
# [dependencies.smoltcp]
|
|
|
|
# version = "0.8.0"
|
|
|
|
# default-features = false
|
|
|
|
# features = ["log", "proto-ipv4"]
|
2022-01-22 00:01:16 -06:00
|
|
|
|
|
|
|
[dependencies.y-compositor-protocol]
|
|
|
|
git = "https://git.ablecorp.us:443/able/y-compositor-protocol.git"
|
2022-02-20 05:05:50 -06:00
|
|
|
|
2022-02-08 03:01:29 -06:00
|
|
|
[dependencies.ext2]
|
2022-07-27 19:51:13 -05:00
|
|
|
path = "../ext2-rs"
|
2022-01-22 00:01:16 -06:00
|
|
|
|
2022-03-11 13:51:47 -06:00
|
|
|
[dependencies.toml]
|
2022-08-02 04:49:17 -05:00
|
|
|
git = "https://git.ablecorp.us:443/theoddgarlic/toml-rs"
|
2022-03-11 13:51:47 -06:00
|
|
|
# version = "0.5.8"
|
|
|
|
default-features = false
|
|
|
|
|
2022-01-26 19:43:03 -06:00
|
|
|
[dependencies.facepalm]
|
|
|
|
path = "../facepalm"
|
|
|
|
|
2022-01-16 09:23:19 -06:00
|
|
|
[dependencies.ab_glyph]
|
2022-01-25 19:40:37 -06:00
|
|
|
version = "*"
|
2022-01-16 09:23:19 -06:00
|
|
|
default-features = false
|
|
|
|
features = ["libm"]
|
|
|
|
|
2021-11-28 14:50:14 -06:00
|
|
|
[dependencies.wasmi]
|
|
|
|
default-features = false
|
|
|
|
features = ["core"]
|
2021-12-24 03:30:27 -06:00
|
|
|
version = "*"
|
2021-11-28 14:50:14 -06:00
|
|
|
|
2022-08-02 05:44:42 -05:00
|
|
|
[dependencies.libwasm]
|
2022-08-02 06:07:24 -05:00
|
|
|
git = "https://git.ablecorp.us:443/able/libwasm.git"
|
2022-08-02 05:44:42 -05:00
|
|
|
default-features = false
|
|
|
|
|
2021-12-24 03:30:27 -06:00
|
|
|
[dependencies.externc-libm]
|
2022-01-26 09:41:01 -06:00
|
|
|
git = "https://git.ablecorp.us:443/able/externc-libm.git"
|
2021-11-16 00:09:27 -06:00
|
|
|
|
2022-02-20 05:05:50 -06:00
|
|
|
[target.'cfg(target_arch = "riscv")'.dependencies]
|
2022-06-22 13:59:24 -05:00
|
|
|
riscv = "*"
|
2022-02-18 10:04:10 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
2022-07-29 13:29:54 -05:00
|
|
|
x86_ata = { path = "../x86_ata" }
|
2021-12-24 03:30:27 -06:00
|
|
|
bootloader = { version = "0.9.8", features = ["map_physical_memory"] }
|
2022-02-01 17:12:29 -06:00
|
|
|
cpuio = { git = "https://git.ablecorp.us/ondra05/cpuio.git" }
|
2021-11-16 00:09:27 -06:00
|
|
|
pic8259 = "0.10.1"
|
2021-12-24 03:30:27 -06:00
|
|
|
uart_16550 = "0.2.0"
|
|
|
|
volatile = "0.2.6"
|
2022-07-31 01:54:01 -05:00
|
|
|
x86_64 = "0.14.8"
|
2022-06-22 13:59:24 -05:00
|
|
|
pc-beeper = { git = "https://github.com/AbleOS/pc-beeper" }
|
2022-06-14 10:27:30 -05:00
|
|
|
acpi = "4.1.0"
|
2022-08-02 01:52:03 -05:00
|
|
|
vga = { git = "https://git.ablecorp.us:443/able/vga.git" }
|
2022-08-05 01:14:13 -05:00
|
|
|
# vga = { path = "../../vga" }
|